class Consumer<T> { fun consume(t: T) { ... } } val consumer: Consumer<in Button> = Consumer<TextView>() consumer.consume(Button(context)) ...
確定! 回上一頁