Chapter 7: Arrays and Array Lists

Today's Office Hours

I will have office hours today from 2:10 p.m. - 3:00 p.m. instead of from 10:15 a.m. - 11:00 a.m. Thanks.

Enhanced for Loop

double [] data = ... ;

for (double element: data)
{
  // process element
}

Common Algorithms

2-D Arrays

Lecture Code

This code adds functionality to the CardDeck and Card classes that we began writing on Wednesday.

This code introduces the ArrayList class.

Valid XHTML 1.0!