int[] a = new int[5]; System.out.println(a.length); // only array uses 'length' 复制代码复制代码. Kotlin val a = IntArray(5) println(a.size) ...
確定! 回上一頁