我最近研究了 kotlin 泛型,但我发现了一些奇怪的情况
interface MyItem
fun <ITEM : MyItem> bindItem(items: List<ITEM>?) {
val castedItem = items as List<MyItem>?
}
fun <ITEM : MyItem> bindItem2(items: MutableList<ITEM>?) {
val castedItem = items as MutableList<MyItem>?
}
仅在 MutableList 情况下,编译器会警告未选中的 Cast
如果有人知道这种情况,请告诉我。