JAVA Programming Language Practice02: O-O Programming 张 成 伟 Zhang Chengwei Email: Zhangcw@hust.edu.cn Phone: 1398 6214 512
PRACTICE 2 Java Programming Language 2
Exercise 8.4 (Rectangle Class) On book: Java How to Program(6th) [ link ] Create a class Rectangle. The class has attributes length and width, each of which defaults to 1. It has methods that calculate the perimeter and the area of the rectangle. It has set and get methods for both length and width. The set methods should verify that length and width are each floating-point numbers larger than 0.0 and less than 20.0. Write a program to test class Rectangle. Java Programming Language 3
Exercise 8.6 (Savings Account Class) Create class SavingsAccount. Use a static variable annualinterestrate to store the annual interest rate for all account holders. Each object of the class contains a private instance variable savingsbalance indicating the amount the saver currently has on deposit. Provide method calculatemonthlyinterest to calculate the monthly interest by multiplying the savingsbalance by annualinterestrate divided by 12 this interest should be added to savingsbalance. Provide a static method modifyinterestrate that sets the annualinterestrate to a new value. Write a program to test class SavingsAccount. Instantiate two savingsaccount objects, saver1 and saver2, with balances of $2000.00 and $3000.00, respectively. Set annualinterestrate to 4%, then calculate the monthly interest and print the new balances for both savers. Then set the annualinterestrate to 5%, calculate the next month's interest and print the new balances for both savers. Java Programming Language 4
Exercise 8.6: Sample output Java Programming Language 5
Exercise 8.12 Java Programming Language 6
Exercise 8.14 (Enhanced Rectangle Class) Create a more sophisticated Rectangle class than the one you created in Exercise 8.4. This class stores only the Cartesian coordinates of the four corners of the rectangle. The constructor calls a set method that accepts four sets of coordinates and verifies that each of these is in the first quadrant with no single x- or y- coordinate larger than 20.0. The set method also verifies that the supplied coordinates specify a rectangle. Provide methods to calculate the length, width, perimeter and area. The length is the larger of the two dimensions. Include a predicate method issquare which determines whether the rectangle is a square. Write a program to test class Rectangle. Java Programming Language 7
Exercise 8.15 (Set of Integers) Create class IntegerSet. Each IntegerSet object can hold integers in the range 0100. The set is represented by an array of booleans. Array element a[i] is true if integer i is in the set. Array element a[j] is false if integer j is not in the set. The no-argument constructor initializes the Java array to the "empty set" (i.e., a set whose array representation contains all false values). Provide the following methods: Method union creates a third set that is the set-theoretic union of two existing sets (i.e., an element of the third set's array is set to true if that element is true in either or both of the existing sets otherwise, the element of the third set is set to false). Method intersection creates a third set which is the set-theoretic intersection of two existing sets (i.e., an element of the third set's array is set to false if that element is false in either or both of the existing setsotherwise, the element of the third set is set to true). Method insertelement inserts a new integer k into a set (by setting a[k] to true). Method deleteelement deletes integer m (by setting a[m] to false). Method tosetstring returns a string containing a set as a list of numbers separated by spaces. Include only those elements that are present in the set. Use --- to represent an empty set. Method isequalto determines whether two sets are equal. Write a program to test class IntegerSet. Instantiate several IntegerSet objects. Test that all your methods work properly. Java Programming Language 8
Exercise 8.19 (Tic-Tac-Toe) Create an project TicTacToe that will enable you to play the game of Tic-Tac-Toe. The game contains a private 3-by-3 two-dimensional array of integers. The first step should initialize the empty board to all zeros. Allow two human players. Wherever the first player moves, place a 1 in the specified square, and place a 2 wherever the second player moves. Each move must be to an empty square. After each move, determine whether the game has been won and whether it is a draw. If you feel ambitious, modify your program so that the computer makes the moves for one of the players. Also, allow the player to specify whether he or she wants to go first or second. Java Programming Language 9
Exercise 8.19: Sample output Java Programming Language 10
Learning Issues Class/Object Class Members: attributes and behaviors Attributes: variables are defined in the class scope Behaviors: methods are defined in the class scope Define a class Class constructors Method overloading/ Constructor overload Create an object from the existing class public/private/package access Java package (import/package) Keywords: this, static, final Java Programming Language 11