Arrays

1. Arrays

Most real-world programs handle vast amounts of data. Fortunately, data usually can be organized and processed systematically. Arrays or similar structures are almost always used for this. When data is organized into arrays and processed in loops, a relatively small program can handle a vast amount of data. This chapter discusses arrays and shows examples of how they work.

Chapter Topics:

      • The idea of arrays
      • Array declaration
      • Array declaration and construction
      • Using arrays
      • Automatic bounds checking
      • Initializer lists

Question 1:

Say that you are writing a program that reads in 100 numbers. Would you like to declare 100 variables and write 100 input statements?


Source: Bradley Kjell, http://programmedlessons.org/Java9/chap60/ch60_01.html
Creative Commons License This work is licensed under a Creative Commons Attribution-NonCommercial 4.0 License.