我有一个第三方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"
acceptHandler { println("Hello: $it")}
在大多数情况下也可以使用