标签:print otl int hello main bsp 系统 col ring
泛型
变量类型的参数化
fun main() { var a: A<String> = A<String>("hello") a.test() //简写,可以不使用<> var b = A("hello") b.test() } data class A<T>(var t:T){ fun test(){ println(t) } }
标签:print otl int hello main bsp 系统 col ring
原文地址:https://www.cnblogs.com/buchizaodian/p/12630259.html