我想知道如何创建与给定newmatrix = MutableList<MutableList<Int>>
相同大小的matrix = MutableList<MutableList<Boolean>>
。我特别希望newmatrix
为零,这可以通过执行循环来实现。
首先想到的是这样做:
var newmatrix = matrix
// tworzymy macierz równą zero
for (k in 0..matrix.indices.last) {
for (l in 0..matrix[0].indices.last) {
newmatrix[k][l] = 0
}
}
但是它当然不起作用,因为它说newmatrix
的类型为Boolean
,而不是Int
...
答案 0 :(得分:1)
您可以编写扩展功能,将MutableList<Boolean>
转换为MutableList<Int>
,然后在列表列表中使用forEach
来转换每个项目:
// extension function for an Int-representation of a Boolean-list
fun MutableList<Boolean>.toIntList(): MutableList<Int> {
var result: MutableList<Int> = mutableListOf()
this.forEach { it -> if (it) { result.add(1) } else { result.add(0) } }
return result
}
fun main(args: Array<String>) {
// example Boolean-matrix
var matrix: MutableList<MutableList<Boolean>> = mutableListOf(
mutableListOf(true, true, true),
mutableListOf(false, false, false),
mutableListOf(false, true, false),
mutableListOf(true, false, true)
)
// provide the structure for the result
val newMatrix: MutableList<MutableList<Int>> = mutableListOf()
// for each Boolean-list in the source list add the result of toIntList() to the result
matrix.forEach { it -> newMatrix.add(it.toIntList()) }
// print the source list
println(matrix)
// print the resulting Int list
println(newMatrix)
}
输出:
[[true, true, true], [false, false, false], [false, true, false], [true, false, true]]
[[1, 1, 1], [0, 0, 0], [0, 1, 0], [1, 0, 1]]
转换的方法可能不同,甚至更好,但这似乎足够。