matriz[0][0].setSimbolo("Y");
assim ta dando erro!
Exception in thread “main” java.lang.Error: Unresolved compilation problems:
Syntax error on token “0”, delete this token
Syntax error on token “0”, delete this token
matriz[0][0].setSimbolo("Y");
assim ta dando erro!
Exception in thread “main” java.lang.Error: Unresolved compilation problems:
Syntax error on token “0”, delete this token
Syntax error on token “0”, delete this token
matriz[0][0] = "Y";
[code]public class Teste {
public static void main(String[] args) {
String[][] matriz = new int[70][50]; //dimensão da matriz 70x50
//Alimenta a matriz
for (int i = 0; i < 70; i++) {
for (int j = 0; j < 50; j++) {
matriz[i][j] = "Y";
}
}
//Imprime os dados da matriz
for (int i = 0; i < 70; i++) {
for (int j = 0; j < 50; j++) {
System.out.println(matriz[i][j]);
}
}
}
}
[/code]
Eu retirei este exemplo e fiz algumas modificações: http://www.guj.com.br/java/54555-preencher-uma-matriz, porém não executei. Verifique se te ajuda!!!
Abraço!
objeto.setSimbolo("Y");
matriz[0][0] = objeto.getSimbolo();
Só para exemplificar melhor utilizando esse teu atributo simbolo;
Array Multidimensional
Tem mais na parte de Estrutura de Dados I (Array e ArrayList), no índice , até um Batalha Naval simples usando array multimensional direto