Download presentation
Presentation is loading. Please wait.
1
Java Programming, 3e Concepts and Techniques Chapter 5 Arrays, Loops, and Layout Managers Using External Classes
2
Chapter 5: Arrays, Loops, and Layout Managers Using External Classes 2 Chapter Objectives Create and implement an external class Write code to create a constructor class method Construct an instance method to initialize instance variables Declare and construct an array using correct notation
3
Chapter 5: Arrays, Loops, and Layout Managers Using External Classes 3 Chapter Objectives Use layout managers with container components Code a counter-controlled loop using the for statement Correctly employ assignment and unary operators Use methods with Frame, Panel, TextArea and Choice components
4
Chapter 5: Arrays, Loops, and Layout Managers Using External Classes 4 Introduction This chapter illustrates how to create an object, complete with methods and attributes Objects have three key characteristics –Identity The object can be called and used as a single unit –State The object has various properties whose values might change –Behavior The object can perform actions and have actions performed upon it
5
Chapter 5: Arrays, Loops, and Layout Managers Using External Classes 5 The Reservations Program A stand-alone windowed application.
6
Chapter 5: Arrays, Loops, and Layout Managers Using External Classes 6
7
7 Problem Analysis When the user enters information and clicks the Book Room button, some visual element should change in the user interface to indicate the current status The program should be designed to easily accommodate modifications in the number of party rooms
8
Chapter 5: Arrays, Loops, and Layout Managers Using External Classes 8 Design the Solution
9
Chapter 5: Arrays, Loops, and Layout Managers Using External Classes 9 Design the Solution TextArea components display larger amounts of information than TextFields TextFields allow user entries A Choice component displays a drop- down list, which ensures valid entries A hidden checkbox component is used to clear the checkbox options A button triggers an event
10
Chapter 5: Arrays, Loops, and Layout Managers Using External Classes 10 Program Design The Reservations class is the driver class Create variable dictionaries –A class list of variables with their type and purpose Create method prototypes, headers, and flowcharts
11
Chapter 5: Arrays, Loops, and Layout Managers Using External Classes 11
12
Chapter 5: Arrays, Loops, and Layout Managers Using External Classes 12 Methods in the Reservation class Constructor methods –Define an instance of an object –Have no return data type –Have the same name as the object –Create an instance of the object internally
13
Chapter 5: Arrays, Loops, and Layout Managers Using External Classes 13
14
Chapter 5: Arrays, Loops, and Layout Managers Using External Classes 14 Rooms Class
15
Chapter 5: Arrays, Loops, and Layout Managers Using External Classes 15
16
Chapter 5: Arrays, Loops, and Layout Managers Using External Classes 16 Creating an External Class An external class is a class that is not a driver class The Rooms class is an external class External classes are declared public to be accessible by all objects and to allow for inheritance
17
Chapter 5: Arrays, Loops, and Layout Managers Using External Classes 17 Arrays An array stores multiple data items of the same type in a single storage location Declare an array with the element type, a set of square brackets, and the array identifier name –int[] ages; or int ages[]; Construct an array with the new keyword and the array length, or number of elements –ages = new int[100]; –int[] ages = new int[100];
18
Chapter 5: Arrays, Loops, and Layout Managers Using External Classes 18 Arrays Retrieve the array’s length using the length property –int size = arrayName.length Assign values and access array elements using the index number of the element –An index number is assigned to each element, beginning at zero and progressing by integers –temperature[3] = 78; Declare, construct, and assign values with one statement –boolean[] results = {true, false, true, false, true};
19
Chapter 5: Arrays, Loops, and Layout Managers Using External Classes 19 Arrays Index numbers can be any expression that evaluates to an integer Array elements can be used anywhere a variable is used –overtime = (hours[6] - 40) * rate[6] * 1.5 Two-dimensional arrays are used to create tables of values –Two index numbers represent the number of rows and columns. –int[][] myTable = new int[4,3];
20
Chapter 5: Arrays, Loops, and Layout Managers Using External Classes 20 Constructing an Instance Create a constructor method for the class Declare a class variable and call the class constructor in the driver class A class may have multiple constructors, each with different arguments –The practice of defining multiple methods with the same name is called method overloading.
21
Chapter 5: Arrays, Loops, and Layout Managers Using External Classes 21 Counter-Controlled Loops A counter-controlled loop executes a specific number of times Java uses a for loop to implement a counter- controlled loop Assignment and unary operators are often used to update the counter –An assignment operator performs an arithmetic and assignment operation all with one operator, thus providing a shortcut –A unary operator only needs one operand to perform its function
22
Chapter 5: Arrays, Loops, and Layout Managers Using External Classes 22
23
Chapter 5: Arrays, Loops, and Layout Managers Using External Classes 23
24
Chapter 5: Arrays, Loops, and Layout Managers Using External Classes 24 Unary operators behave differently depending on whether the operator is positioned before or after the variable
25
Chapter 5: Arrays, Loops, and Layout Managers Using External Classes 25 Unary Operators in for Loops A for loop often uses the increment operator to access each element of an array To exit a for loop prematurely, assign the counter a number outside the condition range inside the loop
26
Chapter 5: Arrays, Loops, and Layout Managers Using External Classes 26 Instance Methods An instance method operates or manipulates variables for an external class Instance variables are variables manipulated within an instance method, which are local in scope When called by a driver class, instance methods must use the class.method() notation Instance methods typically include a user- friendly active verb in the method name
27
Chapter 5: Arrays, Loops, and Layout Managers Using External Classes 27 The bookRoom() Method
28
Chapter 5: Arrays, Loops, and Layout Managers Using External Classes 28 Creating Windowed Applications The AWT classes are abstract and provide only essential components which are obtained from the native environment when instantiated The Swing components use lightweight Java implementations of standard GUI controls A container is an object that contains other components –A Frame is a container for a collection of graphical AWT components. –A program using a Frame needs to use the word, extends, in the class header.
29
Chapter 5: Arrays, Loops, and Layout Managers Using External Classes 29
30
Chapter 5: Arrays, Loops, and Layout Managers Using External Classes 30 The Reservations Class
31
Chapter 5: Arrays, Loops, and Layout Managers Using External Classes 31 Choice Components A Choice component displays a restricted list through a drop-down list box with a box arrow
32
Chapter 5: Arrays, Loops, and Layout Managers Using External Classes 32 Calling Constructor Methods for the Reservations Class
33
Chapter 5: Arrays, Loops, and Layout Managers Using External Classes 33 Layout Managers Layout managers assist programmers organize components into predefined locations in a window If the user resizes the window, the size and position of the components are automatically adjusted
34
Chapter 5: Arrays, Loops, and Layout Managers Using External Classes 34 Flow Layout Change alignment with setLayout() and the constructor Add components with the add() method
35
Chapter 5: Arrays, Loops, and Layout Managers Using External Classes 35 BorderLayout The add() method takes a parameter specifying the desired region The setLayout() method takes two integers parameters to specify the number of pixels between components
36
Chapter 5: Arrays, Loops, and Layout Managers Using External Classes 36 GridLayout All components must be the same size The constructor takes the number of rows and columns as parameters
37
Chapter 5: Arrays, Loops, and Layout Managers Using External Classes 37 CardLayout Each card may have its own layout manager Only the top card on the stack is visible
38
Chapter 5: Arrays, Loops, and Layout Managers Using External Classes 38 GridBagLayout Components can be of varying size and can be added in any order
39
Chapter 5: Arrays, Loops, and Layout Managers Using External Classes 39 The Reservations() Constructor
40
Chapter 5: Arrays, Loops, and Layout Managers Using External Classes 40 Window Event-Handling Methods A WindowListener is registered with a Frame with the addWindowListener() method A WindowAdapter class is used to provide the event- handling methods for the Frame –Adapter classes implement abstract classes, providing prewritten method for all the methods, any of which can be overridden by the programmer
41
Chapter 5: Arrays, Loops, and Layout Managers Using External Classes 41
42
Chapter 5: Arrays, Loops, and Layout Managers Using External Classes 42 The main() Method Execution of a program begins with the main() method The main() method can be placed anywhere within the class braces In a windowed application, the main() method creates the instance of the Frame using a call to the constructor method The main() method also sets attributes for the Frame
43
Chapter 5: Arrays, Loops, and Layout Managers Using External Classes 43 The main() Method
44
Chapter 5: Arrays, Loops, and Layout Managers Using External Classes 44 The actionPerformed() Method
45
Chapter 5: Arrays, Loops, and Layout Managers Using External Classes 45 The clearFields() Method Clears input fields after a successful booking.
46
Chapter 5: Arrays, Loops, and Layout Managers Using External Classes 46 Testing a Windowed Application Compile and correct errors Use multiple test cases to test maximum values Test with incorrect data
47
Chapter 5: Arrays, Loops, and Layout Managers Using External Classes 47 Chapter Summary Create and implement an external class Write code to create a constructor class method Construct an instance method to initialize instance variables Declare and construct an array using correct notation
48
Chapter 5: Arrays, Loops, and Layout Managers Using External Classes 48 Chapter Summary Use layout managers with container components Code a counter-controlled loop using the for statement Correctly employ assignment and unary operators Use methods with Frame, Panel, TextArea and Choice components
49
Java Programming, 3e Concepts and Techniques Chapter 5 Complete Arrays, Loops, and Layout Managers Using External Classes
Similar presentations
© 2024 SlidePlayer.com. Inc.
All rights reserved.