Look Back: Arrays
Let’s look back at the Java array concepts that we've studied so far.
We'll cover the following...
Array declaration
Let’s review how to declare arrays.
The default initialization
When we create arrays using the keyword new
, the value of each array element is set to the default value of that return type. Let’s look at the slides below to better ...