摘要:
1 List Java 的 List、Set、Map 介绍见 → Java容器及其常用方法汇总。 1.1 创建 List 1.1.1 emptyList var list = emptyList<String>() // 创建空List 1.1.2 List 构造函数 var list1 = L 阅读全文
摘要:
1 源码 public class Array<T> { public val size: Int public inline constructor(size: Int, init: (Int) -> T) public operator fun get(index: Int): T // 重载a 阅读全文