| Today we have example of arrays as objects, passing arrays and we might get to 2D arrays. | |
| The first program is an example of initializing an array of objects, and then initializing each individual object. | Driver Class & Employee Class |
| The fourth program is an example similar to one in your book. | Student Poll |
| The next program was an example of a enhanced for loop | Enhanced for program |
| This program is an example of passing arrays to methods, passing Arrays are like passing objects, not like passing primitive data types like integers. Integers are pass by value, Integer arrays and objects are pass by reference. | Passing Arrays Example Class |
| The last program is an example TWO-D arrays, you need a 2D array for this week's outlab. | 2D arrays |