码迷,mamicode.com
首页 > 其他好文 > 详细

kotlin 系统类型

时间:2020-04-04 09:55:05      阅读:55      评论:0      收藏:0      [点我收藏+]

标签:print   otl   int   hello   main   bsp   系统   col   ring   

  

泛型

变量类型的参数化

1.最基本泛型

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)
    }
}

 

kotlin 系统类型

标签:print   otl   int   hello   main   bsp   系统   col   ring   

原文地址:https://www.cnblogs.com/buchizaodian/p/12630259.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!