val s = "" val n = 100 for (j in 0 until n) { s += "*" } 但是它看起来很丑,并且具有O(n ^ 2)的时间复杂度。 Kotlin中有没有一种方法可以在没有循环的情况下实现更 ...
確定! 回上一頁