Module 3: Arrays Flashcards
What is an Array?
An array stores multiple values in a single variable.
Ex:
int[] numbers = {1,2,3,4,5};
How do you loop through an array?
- Using a for - each loop (preferred way).
Ex:
int[] numbers = {1,2,3,4,5};
for(int x: numbers) {System.out.println(x);}
- Using the .length property in a for loop.
Ex:
int[] numbers = {1,2,3,4,5};
for(int x=0; x<numbers.length; x++)
{System.out.println(numbers[x]};
What is a multidimensional array?
An array of arrays.
Ex:
int[][] groups = {{1,2,3}, {4,5,6}};
How do you loop through a multidimensional array?
- Using a nested for - each loop (preferred way).
Ex:
int[][] numbers = {{1,2,3,4}, {5,6,7}};
for (int[] row: numbers) {for (int i : row)
{System.out.println(i);}}
- Using the .length property in nested a for loop.
Ex.
int[][] numbers = {{1,2,3,4}, {5,6,7}};
for(int x=0; x<ages.length; x++) {for(int y=0; y<ages[x].length; y++) {System.out.println(ages[x][y]);}}