Ch 9: Arrays Flashcards
what are the individual memory locations in an array called
elements
several consecutive memory locations of the same data type under one name is
an array
number of elements in an array is called
size or length of the array
program can refer to an individual element of an array using the array name followed by the element’s number which is called
[index or subscript] notice the brackets*
an index can be
any integer constant, variable, or expression
create an array
someType[] nameOfArray;
create an array with specified number of elements
int[] scores = new int [10];
what are default values for an array
numeric elements are initialized to 0
boolean to false
if array elements are of a class type then…
the array contains references to objects of that type, these are initialized to null
if array elements are references, you have to initialize each element by setting it to a valid reference before the element is used
color[0] = new Color (207, 189, 250); colors[1] = Color.BLUE;
what error do you get when you call a method of a non existing object(the reference is null)
nullpointerexception
another way to declare and create an array list is to list explicitly like
int [] scores = { 95,97,99, 100 };
String[] names = { “Vika”, “hello”, “justin” };
Color [] rainbowColors =
{
Color.Red, Color.Orange, Color.Grey, Color.Pink
};
once an array is declared and initialized, either with the new operator or with a list of values, it is not possible to ?
change its size
declare an array of 100 integer elemnts
final int MAXCOUNT = 100;
int[] a = new int [MAXCOUNT];
int[99] is the biggest since index begins at 0
how do you find the size of an array
arrayName.length
length acts as a public field that holds the size of an array
In array, length is not a method(as in the String class). It is accessed like a field
how are arrays passed to methods?
always as references.
if an array is passed to a method, the method gets the address of the original array and works with the original array, not a copy, therefore a method can change an array passed to it.
swap two element’s places in an array
public void swap(double[] a, int i, int j) { double temp = a[i]; a[i] = a[j]; a[j] = temp; }
declare and initialize a 2-d array of doubles
int rows =2;
int cols =3;
double[] [] a = new doubles [rows] [cols];
double[] [] b = { {0.0, 0.1, 0.2}. {1.0, 1.1, 1.2} };
// each row is an array // both are two rows and two columns
be careful when using break in nested loops, why
a break statement inside a nested loop will only break out of the inner loop
define traversal
procedure in which every element of a list is “visited” and processed once. kind of like your order being taken at a mcdonald’s drive thru :P
rewrite
String[] names = new String[newGuests];
for (int i = 0; i
for (String str : names) { // do something with str }
or
double sum = 0;
for (double sum : scores) {
sum += num;
}
double average = sum/scores.length;
are you able to change the values of an array using an for each loop?
no, you cannot! the variable that refers to an element holds only a copy of the element
for each loop does not give you access to the index of the “visited” element
use a for loop to find the largest number of an array
double aMax = 0;
for(int k=0; k aMax ) {
aMax = a[i];
}
}
}