Ich bin so verwirrt über 2D-Arrays in Swift. Lassen Sie mich Schritt für Schritt beschreiben. Und würden Sie mich bitte korrigieren, wenn ich falsch liege?
Zuerst; Deklaration eines leeren Arrays:
class test{
var my2Darr = Int[][]()
}
Zweitens füllen Sie das Array. (z. B. my2Darr[i][j] = 0
wo i, j for-Schleifenvariablen sind)
class test {
var my2Darr = Int[][]()
init() {
for(var i:Int=0;i<10;i++) {
for(var j:Int=0;j<10;j++) {
my2Darr[i][j]=18 /* Is this correct? */
}
}
}
}
Und schließlich das Element Bearbeiten im Array
class test {
var my2Darr = Int[][]()
init() {
.... //same as up code
}
func edit(number:Int,index:Int){
my2Darr[index][index] = number
// Is this correct? and What if index is bigger
// than i or j... Can we control that like
if (my2Darr[i][j] == nil) { ... } */
}
}
var my2DArray = Array(count: 10, repeatedValue: Array(count: 10, repeatedValue: 18))
Und Sie sollten wirklich auf eine neuere Beta upgraden. Int[][]()
ist keine gültige Syntax mehr. Es wurde geändert in [[Int]]()
.