Código Java:
Bueno, la cosa es que el método FindHiddenWords debería recordar los parámetros de ancho y alto de la matrix. Por eso los declaré como int = matrixWidth y int=matrixHeight. Pero después cuando necesito usarlos en el siguiente método (initializeMatrix) no me deja. Eclipse me dice que tanto matrixWidth como matrixHeight no existen. Ver original
public class FindHiddenWords { public FindHiddenWords(int targetWidth, int targetHeight, int matrixWidth = targetWidth; int matrixHeight = targetHeight; } void initializeMatrix() { char [][] matrix; if (matrixWidth == 0 || matrixHeight == 0){ } else { matrix = new char[matrixWidth][matrixHeight]; for (int i=1; i<matrixHeight){ for (int j=1; i< matrixWidth){ j++;} } i++; } }
¿qué estoy haciendo mal? Gracias por su ayuda!
Angi.