Kotlin에서 익명 인터페이스의 인스턴스를 만드는 방법은 무엇입니까?


95

다음과 같은 인터페이스를 가진 객체 인 타사 Java 라이브러리가 있습니다.

public interface Handler<C> {
  void call(C context) throws Exception;
}

다음과 같이 Java 익명 클래스와 유사한 Kotlin에서 어떻게 간결하게 구현할 수 있습니까?

Handler<MyContext> handler = new Handler<MyContext> {
   @Override
   public void call(MyContext context) throws Exception {
      System.out.println("Hello world");
   }
}

handler.call(myContext) // Prints "Hello world"

답변:


144

인터페이스에 사용할 수있는 단일 메서드 만 있다고 가정합니다. SAM

val handler = Handler<String> { println("Hello: $it") }

핸들러를 받아들이는 메소드가 있다면 타입 인수를 생략 할 수도 있습니다.

fun acceptHandler(handler:Handler<String>){}

acceptHandler(Handler { println("Hello: $it") })

acceptHandler({ println("Hello: $it") })

acceptHandler { println("Hello: $it") }

인터페이스에 둘 이상의 메소드가있는 경우 구문이 좀 더 장황합니다.

val handler = object: Handler2<String> {
    override fun call(context: String?) { println("Call: $context") }
    override fun run(context: String?) { println("Run: $context")  }
}

2
acceptHandler { println("Hello: $it")}또한 대부분의 경우에 작동합니다
voddan

5
고군분투하는 사람을 위해. 나는 인터페이스가 자바로 선언되어야한다고 생각한다. kotlin 인터페이스에서 SAM 변환이 작동하지 않는다고 생각합니다. kotlin 인터페이스 인 경우 object : Handler {} 방식을 사용해야합니다. 여기에 따라 : youtrack.jetbrains.com/issue/KT-7770 .
j2emanue

2
1.4부터 Kotlin 인터페이스를 사용하여이 작업을 수행 할 수 있습니다 fun interface..
Nick

18

var를 만들지 않고 인라인으로 수행하는 경우가 있습니다. 내가 그것을 달성 한 방법은

funA(object: InterfaceListener {
                        override fun OnMethod1() {}

                        override fun OnMethod2() {}
})

15
     val obj = object : MyInterface {
         override fun function1(arg:Int) { ... }

         override fun function12(arg:Int,arg:Int) { ... }
     }

2

가장 간단한 대답은 아마도 Kotlin의 람다 일 것입니다.

val handler = Handler<MyContext> {
  println("Hello world")
}

handler.call(myContext) // Prints "Hello world"
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.