Objeto de aprendizaje
Arreglos bidimensionales – matrices java
Autor
Cecilia Ávila Garzón
Institución
Resumen
Bidimensional arrays or matrixes in JAVA are a set of data from the same type. Such set of data is organized y rows and columns. They are bidimensional because it is necessary to provide two indexes in order to reference a position in the matrix, one index for the row and one index for the column. To create a matrix in JAVA it is needed to provide the type and double squared brackets. Los arreglos bidimensionales o también conocidos como matrices en JAVA, son un conjunto de datos del mismo tipo. En este conjunto los datos se organizan en filas y columnas. Se dice que son bidimensionales porque para acceder a una posición de una matriz se requieren de dos índices, el índice de la fila y el índice de la columna. Para crear una matriz en JAVA se utiliza el tipo y corchetes cuadrados dobles.