1 / 48

Chapter 6—Objects and Classes

Java. The Art and Science of. An Introduction. to Computer Science. ERIC S. ROBERTS. C H A P T E R 6. Objects and Classes. Chapter 6—Objects and Classes. To beautify life is to give it an object. —Jos é Mart í , On Oscar Wilde, 1888 . 6.1 Using the RandomGenerator class.

rkristy
Download Presentation

Chapter 6—Objects and Classes

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Java The Art and Science of An Introduction to Computer Science ERIC S. ROBERTS C H A P T E R 6 Objects and Classes Chapter 6—Objects and Classes To beautify life is to give it an object. —José Martí, On Oscar Wilde, 1888  6.1 Using the RandomGenerator class 6.2 The javadoc documentation system 6.3 Defining your own classes 6.4 Representing student information 6.5 Rational numbers 6.6 Extending existing classes

  2. Using the RandomGenerator Class • Before you start to write classes of your own, it helps to look more closely at how to use classes that have been developed by others. Chapter 6 illustrates the use of existing classes by introducing a class called RandomGenerator, which makes it possible to write programs that simulate random processes such as flipping a coin or rolling a die. Programs that involve random processes of this sort are said to be nondeterministic. • Nondeterminstic behavior is essential to many applications. Computer games would cease to be fun if they behaved in exactly the same way each time. Nondeterminism also has important practical uses in simulations, in computer security, and in algorithmic research.

  3. In most cases, you create a new instance of a class by using the new operator, as you have already seen in the earlier chapters. From that experience, you would expect to create a RandomGenerator object by writing a declaration like this: • The best way to create a RandomGenerator instance is to call the getInstance method, which returns a single shared instance of a random generator. The standard form of that declaration looks like this: privateRandomGeneratorrgen=RandomGenerator.getInstance(); RandomGeneratorrgen=new RandomGenerator(); Creating a Rand om Generator • The first step in writing a program that uses randomness is to create an instance of the RandomGenerator class. • This declaration usually appears outside of any method and is therefore an example of an instance variable. The keyword private indicates that this variable can be used from any method within this class but is not accessible to other classes. For reasons that will be discussed in a later slide, using new is not appropriate for RandomGenerator because there should be only one random generator in an application. What you want to do instead is to ask the RandomGenerator class for a common instance that can be shared throughout all classes in your program. • When you want to obtain a random value, you send a message to the generator in rgen, which then responds with the result.

  4. int nextInt(int low, int high) double nextDouble() Returns a random int between low and high, inclusive. Returns a random doubled in the range 0 ≤ d < 1. int nextInt(int n) boolean nextBoolean() Returns a random int between 0 and n-1. Returns a random boolean value, which is true 50 percent of the time. double nextDouble(double low, double high) boolean nextBoolean(double p) Color nextColor() Returns a random doubled in the range low ≤ d < high. Returns a random boolean, which is true with probability p, where 0 ≤ p ≤ 1. Returns a random color. Methods to Generate Random Values The RandomGenerator class defines the following methods:

  5. As an example, you could simulate rolling a die by calling int die = rgen.nextInt(1, 6); • Similarly, you could simulate flipping a coin like this: String flip = rgen.nextBoolean() ? "Heads" : "Tails"; Using the Random Methods • To use the methods from the previous slide in a program, all you need to do is call that method using rgen as the receiver. • Note that the nextInt, nextDouble, and nextBoolean methods all exist in more than one form. Java can tell which version of the method you want by checking the number and types of the arguments. Methods that have the same name but differ in their argument structure are said to be overloaded.

  6. int total = rgen.nextInt(2, 12); This declaration makes 2 come up as often as 7. Exercises: Generating Random Values How would you go about solving each of the following problems? 1. Set the variable total to the sum of two six-sided dice. int d1 = rgen.nextInt(1, 6); int d2 = rgen.nextInt(1, 6); int total = d1 + d2; 2. Flip a weighted coin that comes up heads 60% of the time. String flip = rgen.nextBoolean(0.6) ? "Heads" : "Tails"; 3. Change the fill color of rect to some randomly chosen color. rect.setFillColor(rgen.nextColor());

  7. while (true) { total = rollTwoDice(); if (total == point){ println("You made your point. You win."); break; } else if (total == 7){ println("That's a 7. You lose."); break; } } public void run(){ int total = rollTwoDice(); if (total == 7 || total == 11){ println("That's a natural. You win."); } else if (total == 2 || total == 3 || total == 12){ println("That's craps. You lose."); } else { int point = total; println("Your point is " + point + "."); while (true) . . . } } private int rollTwoDice(){ int d1 = rgen.nextInt(1,6); int d2 = rgen.nextInt(1,6); int total = d1 + d2; println("Rolling dice: " + d1 + "+" + d2 + "=" + total); return total; } point point total total d1 d2 total Craps 6 6 6 6 6 3 9 Simulating the Game of Craps public void run(){ int total = rollTwoDice(); if (total == 7 || total == 11){ println("That's a natural. You win."); } else if (total == 2 || total == 3 || total == 12){ println("That's craps. You lose."); } else { int point = total; println("Your point is " + point + "."); while (true) . . . } } 4 2 6 2 1 3 Rolling dice: 4 + 2 = 6 Your point is 6. Rolling dice: 2 + 1 = 3 Rolling dice: 3 + 6 = 9 Rolling dice: 3 + 3 = 6 You made your point. You win. skip simulation

  8. Clients and Implementors • As you work with classes in Java, it is useful to recognize that there are two contrasting perspectives that you can take with respect to a particular class. More often than not, you will find yourself using a class that you didn’t actually write, as in the case of the RandomGenerator class. In such cases, you are acting as a client of the class. When you actually write the code, you are then acting as as an implementor. • Clients and implementors look at a class in different ways. Clients need to know what methods are available in a class and how to call them. The details of how each method works are of little concern. The implementor, on the other hand, is primarily interested in precisely those details. • As was true in the case of a method and its callers, the implementor of a class should try to hide complexity from its clients. The RandomGenerator class hides a considerable amount of complexity, as you will see on the next few slides.

  9. Layered Abstractions • The RandomGenerator class is actually implemented as a subclass of a class called Random, as follows: Random RandomGenerator • Some of the methods that you call to produce random values are defined in the RandomGenerator class itself; others are inherited from the Random class. As a client, you don’t need to know which is which. • Class hierarchies that define methods at different levels are called layered abstractions.

  10. Whenever you refer directly to a class, you must import the package in which it lives. For example, any program using the RandomGenerator class will include the line import acm.util.*; When you use the RandomGenerator class, you do not need to import the java.util package (unless you use it for some other purpose). The fact that RandomGenerator is built on top of Random is part of the complexity hidden from clients. Java Packages • Every Java class is part of a package, which is a collection of related classes that have been released as a coherent unit. • The RandomGenerator class is defined in a package called acm.util, which is part of the ACM Java Libraries. • The Random class is part of the java.util package, which is a collection of general utility classes.

  11. 1. 2. The values generated by that process should be difficult for human observers to predict. Those values should appear to be random, in the sense that they should pass statistical tests for randomness. Simulating Randomness • Nondeterministic behavior turns out to be difficult to achieve on a computer. A computer executes its instructions in a precise, predictable way. If you give a computer program the same inputs, it will generate the same outputs every time, which is not what you want in a nondeterministic program. • Given that true nondeterminism is so difficult to achieve in a computer, classes such as RandomGenerator must instead simulate randomness by carrying out a deterministic process that satisfies the following criteria: • Because the process is not truly random, the values generated by RandomGenerator are said to be pseudorandom.

  12. The best way to visualize a pseudorandom number generator is to think of it as a black box that generates a sequence of values, even though the details of how it does so are hidden: Give me the next pseudorandom number pseudorandom number generator 1749940626 892128508 155629808 Pseudorandom Numbers • The RandomGenerator class uses a mathematical process to generate a series of integers that, for all intents and purposes, appear to be random. The code that implements this process is called a pseudorandom number generator. • To obtain a new pseudorandom number, you send a message to the generator asking for the next number in its sequence. • The generator then responds by returning that value. • Repeating these steps generates a new value each time.

  13. The Random Number Seed • The pseudorandom number generator used by the Random and RandomGenerator classes generates seemingly random values by applying a function to the previous result. The starting point for this sequence of values is called the seed. • As part of the process of starting a program, Java initializes the seed for its pseudorandom number generator to a value based on the system clock, which changes very quickly on a human time scale. Programs run just a few milliseconds apart will therefore get a different sequence of random values. • Computers, however, run much faster than the internal clock can register. If you create two RandomGenerator instances in a single program, it is likely that both will be initialized with the same seed and therefore generate the same sequence of values. This fact explains why it is important to create only one RandomGenerator instance in an application.

  14. To get around this problem, it is often useful to have your programs run deterministically during the debugging phase. To do so, you can use the setSeed method like this: rgen.setSeed(1); This call sets the random number seed so that the internal random number sequence will always begin at the same point. The value 1 is arbitrary. Changing this value will change the sequence, but the sequence will still be the same on each run. Debugging and Random Behavior • Even though unpredictable behavior is essential for programs like computer games, such unpredictability often makes debugging extremely difficult. Because the program runs in a different way each time, there is no way to ensure that a bug that turns up the first time you run a program will happen again the second time around.

  15. The javadoc Documentation System • Unlike earlier languages that appeared before the invention of the World-Wide Web, Java was designed to operate in the web-based environment. From Chapter 1, you know that Java programs run on the web as applets, but the extent of Java’s integration with the web does not end there. • One of the most important ways in which Java works together with the web is in the design of its documentation system, which is called javadoc. The javadoc application reads Java source files and generates documentation for each class. • The next few slides show increasingly detailed views of the javadoc documentation for the RandomGenerator class. • You can see the complete documentation for the ACM Java Libraries by clicking on the following link: http://jtf.acm.org/javadoc/student/

  16. Sample javadoc Pages Overview Package Student Complete Tree Index Help PREV CLASS NEXT CLASS FRAMES NO FRAMES SUMMARY: FIELD | CONSTR | METHOD DETAIL: FIELD | CONSTR | METHOD acm.util Class RandomGenerator java.lang.Object | +--java.util.Random | +--acm.util.RandomGenerator public class RandomGenerator extends Random This class implements a simple random number generator that allows clients to generate pseudorandom integers, doubles, booleans, and colors. To use it, the first step is to declare an instance variable to hold the random generator as follows: private RandomGenerator rgen = RandomGenerator.getInstance(); By default, the RandomGenerator object is initialized to begin at an unpredictable point in a pseudorandom sequence. During debugging, it is often useful to set the internal seed for the random generator explicitly so that it always returns the same sequence. To do so, you need to invoke the setSeed method. The RandomGenerator object returned by getInstance is shared across all classes in an application. Using this shared instance of the generator is preferable to allocating new instances of RandomGenerator. If you create several random generators in succession, they will typically generate the same sequence of values.

  17. RandomGenerator() Creates a new random generator. int double boolean Color nextDouble(double low, double high) nextColor() nextInt(int low, int high) nextBoolean(double p) Returns a random boolean value with the specified probability. Returns a random opaque color whose components are chosen uniformly in the 0-255 range. Returns the next random integer in the specified range. Returns the next random real number in the specified range. boolean nextBoolean() Returns a random boolean that is true 50 percent of the time. double nextDouble() Returns a random doubled in the range 0 ≤ d < 1. int nextInt(int n) Returns a random intk in the range 0 ≤ k < n. void setSeed(long seed) Sets a new starting point for the random number generator. Sample javadoc Pages Constructor Summary Method Summary RandomGenerator getInstance() Returns a RandomGenerator instance that can be shared among several classes. Inherited Method Summary

  18. Sample javadoc Pages Constructor Detail public RandomGenerator() Creates a new random generator. Most clients will not use the constructor directly but will instead call getInstance to obtain a RandomGenerator object that is shared by all classes in the application. Usage: RandomGenerator rgen = new RandomGenerator(); Method Detail public RandomGenerator() Returns a RandomGenerator instance that can be shared among several classes. Usage: RandomGenerator rgen = RandomGenerator.getInstance(); Returns: A shared RandomGenerator object public boolean nextBoolean(double p) Returns a random boolean value with the specified probability. You can use this method to simulate an event that occurs with a particular probability. For example, you could simulate the result of tossing a coin like this: String coinFlip = rgen.nextBoolean(0.5) ? "HEADS" : "TAILS"; Usage: if (rgen.nextBoolean(p)) ... Parameter: p A value between 0 (impossible) and 1 (certain) indicating the probability Returns: The value true with probability p

  19. Writing javadoc Comments • The javadoc system is designed to create the documentary web pages automatically from the Java source code. To make this work with your own programs, you need to add specially formatted comments to your code. • A javadoc comment begins with the characters /** and extends up to the closing */ just as a regular comment does. Although the compiler ignores these comments, the javadoc application reads through them to find the information it needs to create the documentation. • Although javadoc comments may consist of simple text, they may also contain formatting information written in HTML, the hypertext markup language used to create web pages. The javadoc comments also often contain @param and @result tags to describe parameters and results, as illustrated on the next slide.

  20. /** * Returns the next random integer between 0 and * <code>n</code>-1, inclusive. * * @param n The number of integers in the range * @return A random integer between 0 and <code>n</code>-1 */ public int nextInt(int n) public int nextInt(int n) Returns the next random integer between 0 and n-1, inclusive. Parameter: n The number of integers in the range Returns: A random integer between 0 and n-1 An Example of javadoc Comments The javadoc comment produces the following entry in the “Method Detail” section of the web page.

  21. Defining Your Own Classes • The standard form of a class definition in Java looks like this: public class name extends superclass { class body } • The extends clause on the header line specifies the name of the superclass. If the extends clause is missing, the new class becomes a direct subclass of Object, which is the root of Java’s class hierarchy. • The body of a class consists of a collection of Java definitions that are generically called entries. The most common entries are constructors, methods, instance variables, and named constants.

  22. Controlling Access to Entries • Each entry in a Java class is marked with one of the following keywords to control which classes have access to that entry: All classes in the program have access to any public entry. The public entries in a class are said to be exported by that class. public Access to entries declared as private is limited to the class itself, making that entry completely invisible outside the class. private Protected entries are restricted to the class that defines them, along with any of its subclasses or any classes in the same package. protected If the access keyword is missing, the entry is visible only to classes in the same package. Such entries are called package-private. (no keyword) • The text uses only public and private. All entries are marked as private unless there is a compelling reason to export them.

  23. Representing Student Information • Understanding the structure of a class is easiest in the context of a specific example. The next four slides walk through the definition of a class called Student, which is used to keep track of the following information about a student: • The name of the student • The student’s six-digit identification number • The number of credits the student has earned (which may include a decimal fraction to account for half- and quarter-credit courses) • A flag indicating whether the student has paid all university fees • Each of these values is stored in an instance variable of the appropriate type. • In keeping with the modern object-oriented convention used throughout both the book and the ACM Java Libraries, these instance variables are declared as private. All access to these values is therefore mediated by methods exported by the Student class.

  24. This comment describes the class as a whole. The class header defines Student as a direct subclass of Object. This comment describes the constructor. The constructor sets the instance variables. The Student Class /** * The Student class keeps track of the following pieces of data * about a student: the student's name, ID number, the number of * credits the student has earned toward graduation, and whether * the student is paid up with respect to university bills. * All of this information is entirely private to the class. * Clients can obtain this information only by using the various * methods defined by the class. */ public class Student { /** * Creates a new Student object with the specified name and ID. * @param name The student's name as a String * @param id The student's ID number as an int */ public Student(String name, int id){ studentName = name; studentID = id; } page 1 of 4 skip code

  25. /** * Gets the name of this student. * @return The name of this student */ public String getName() { return studentName; } /** * Gets the ID number of this student. * @return The ID number of this student */ public int getID() { return studentID; } /** * Sets the number of credits earned. * @param credits The new number of credits earned */ public void setCredits(double credits) { creditsEarned = credits; } These methods retrieve the value of an instance variable and are called getters. Because the student name and ID number are fixed, there are no corresponding setters. This method changes the value of an instance variable and is called a setter. The Student Class /** * The Student class keeps track of the following pieces of data * about a student: the student's name, ID number, the number of * credits the student has earned toward graduation, and whether * the student is paid up with respect to university bills. * All of this information is entirely private to the class. * Clients can obtain this information only by using the various * methods defined by the class. */ public class Student { /** * Creates a new Student object with the specified name and ID. * @param name The student's name as a String * @param id The student's ID number as an int */ public Student(String name, int id){ studentName = name; studentID = id; } page 2 of 4 skip code

  26. /** * Gets the number of credits earned. * @return The number of credits this student has earned */ public double getCredits() { return creditsEarned; } /** * Sets whether the student is paid up. * @param flag The value true or false indicating paid-up status */ public void setPaidUp(boolean flag) { paidUp = flag; } /** * Returns whether the student is paid up. * @return Whether the student is paid up */ public boolean isPaidUp() { return paidUp; } Names for getter methods usually begin with the prefix get. The only exception is for getter methods that return a boolean, in which case the name typically begins with is. The Student Class /** * Gets the name of this student. * @return The name of this student */ public String getName() { return studentName; } /** * Gets the ID number of this student. * @return The ID number of this student */ public int getID() { return studentID; } /** * Sets the number of credits earned. * @param credits The new number of credits earned */ public void setCredits(double credits) { creditsEarned = credits; } page 3 of 4 skip code

  27. /** * Creates a string identifying this student. * @return The string used to display this student */ public String toString() { return studentName+"(#"+studentID+")"; } /* Public constants */ /** The number of credits required for graduation */ public static final double CREDITS_TO_GRADUATE = 32.0; /* Private instance variables */ private String studentName; /* The student's name */ private int studentID; /* The student's ID number */ private double creditsEarned; /* The number of credits earned */ private boolean paidUp; /* Whether student is paid up */ } The toString method tells Java how to display a value of this class. All of your classes should override toString. Classes often export named constants. These declarations define the instance variables that maintain the internal state of the class. All instance variables used in the text are private. The Student Class /** * Gets the number of credits earned. * @return The number of credits this student has earned */ public double getCredits() { return creditsEarned; } /** * Sets whether the student is paid up. * @param flag The value true or false indicating paid-up status */ public void setPaidUp(boolean flag) { paidUp = flag; } /** * Returns whether the student is paid up. * @return Whether the student is paid up */ public boolean isPaidUp() { return paidUp; } page 4 of 4 skip code

  28. You can then use the standard receiver syntax to call methods on these objects. For example, you could set Hermione’s number-of-credits field to 97 by writing topStudent.setCredits(97); or get Harry’s full name by calling chosenOne.getName(); Using the Student Class • Once you have defined the Student class, you can then use its constructor to create instances of that class. For example, you could use the following code to create two Student objects: Student chosenOne = new Student("Harry Potter", 123456); Student topStudent = new Student("Hermione Granger", 314159);

  29. Exercise: Design an Employee Class • Create a definition for a class called Employee, which keeps track of the following information: • The name of the employee • A number indicating the order in which this employee was hired • A flag indicating whether the employee is still active • The salary (a number that may contain a decimal fraction) • The name and employee number should be assigned as part of the constructor call, and it should not be possible to change them subsequently. By default, new employees should be marked as active. The salary field need not be initialized. • The class should export appropriately named getters for all four fields and setters for the last two.

  30. The Employee Class /** * The Employee class keeps track of the following pieces of * data about an employee: the name, employee number, whether * the employee is active, and the annual salary. */ public class Employee { /** * Creates a new Employee object with the specified name and * employee number. * @param name The employee's name as a String * @param id The employee number as an int */ public Employee(String name, int id) { employeeName = name; employeeNumber = id; active = true; } page 1 of 4 skip code

  31. /** * Gets the name of this employee. * @return The name of this employee */ public String getName() { return employeeName; } /** * Gets the employee number of this employee. * @return The employee number of this employee */ public int getEmployeeNumber() { return employeeNumber; } /** * Sets whether the employee is active. * @param flag The value true or false indicating active status */ public void setActive(boolean flag) { active = flag; } The Employee Class /** * The Employee class keeps track of the following pieces of * data about an employee: the name, employee number, whether * the employee is active, and the annual salary. */ public class Employee { /** * Creates a new Employee object with the specified name and * employee number. * @param name The employee's name as a String * @param id The employee number as an int */ public Employee(String name, int id) { employeeName = name; employeeNumber = id; active = true; } page 2 of 4 skip code

  32. /** * Returns whether the employee is active. * @return Whether the employee is active */ public boolean isActive() { return active; } /** * Sets the employee's salary. * @param salary The new salary */ public void setSalary(double salary) { annualSalary = salary; } /** * Gets the annual salary for this employee. * @return The annual salary for this employee works */ public double getSalary() { return annualSalary; } The Employee Class /** * Gets the name of this employee. * @return The name of this employee */ public String getName() { return employeeName; } /** * Gets the employee number of this employee. * @return The employee number of this employee */ public int getEmployeeNumber() { return employeeNumber; } /** * Sets whether the employee is active. * @param flag The value true or false indicating active status */ public void setActive(boolean flag) { active = flag; } page 3 of 4 skip code

  33. /** * Creates a string identifying this employee. * @return The string used to display this employee */ public String toString() { return employeeName + " (#" + employeeNumber + ")"; } /* Private instance variables */ private String employeeName; /* The employee's name */ private int employeeNumber; /* The employee number */ private boolean active; /* Whether the employee is active */ private double annualSalary; /* The annual salary */ } The Employee Class /** * Returns whether the employee is active. * @return Whether the employee is active */ public boolean isActive() { return active; } /** * Sets the employee's salary. * @param salary The new salary */ public void setSalary(double salary) { annualSalary = salary; } /** * Gets the annual salary for this employee. * @return The annual salary for this employee works */ public double getSalary() { return annualSalary; } page 4 of 4 skip code

  34. Exercise: Using the Employee Class • Now that you have defined Employee, write declarations for three variables that contain the names of the following three employees: Ebenezer Scrooge (employee #1), Jacob Marley (employee #2), and Bob Cratchit (employee #3). Employee founder = new Employee("Ebenezer Scrooge", 1); Employee partner = new Employee("Jacob Marley", 2); Employee clerk = new Employee("Bob Cratchit", 3); • Using these variables, write a Java statement that marks the Employee instance for Jacob Marley as inactive. partner.setActive(false); • Write a Java statement that doubles Bob Cratchit’s salary. clerk.setSalary(2 * clerk.getSalary());

  35. Rational numbers support the standard arithmetic operations: Addition: Multiplication: a c ad +bc a c ac + = = x bd b d b d bd Subtraction: Division: a c ad – bc a c ad – = = bc b d b d bd . . Rational Numbers • As a more elaborate example of class definition, section 6.4 defines a class called Rational that represents rational numbers, which are simply the quotient of two integers. • Rational numbers can be useful in cases in which you need exact calculation with fractions. Even if you use a double, the floating-point number 0.1 is represented internally as an approximation. The rational number 1 / 10 is exact.

  36. As you read through the code, the following features are worth special attention: • The constructors for the class are overloaded. Calling the constructor with no argument creates a Rational initialized to 0, calling it with one argument creates a Rational equal to that integer, and calling it with two arguments creates a fraction. • The add, subtract, multiply, and divide methods are written so that one of the operands is the receiver (signified by the keyword this) and the other is passed as an argument. Thus to add r1 and r2 you would write: r1.add(r2) Implementing the Rational Class • The next five slides show the code for the Rational class along with some brief annotations. • The constructor makes sure that the numerator and denominator of any Rational are always reduced to lowest terms. Moreover, since these values never change once a new Rational is created, this property will remain in force.

  37. These constructors are overloaded so that there is more than one way to create a Rational value. These two versions invoke the primary constructor by using the keyword this. The Rational Class /** * The Rational class is used to represent rational numbers, which * are defined to be the quotient of two integers. */ public class Rational { /** Creates a new Rational initialized to zero. */ public Rational() { this(0); } /** * Creates a new Rational from the integer argument. * @param n The initial value */ public Rational(int n) { this(n, 1); } page 1 of 5 skip code

  38. /** * Creates a new Rational with the value x / y. * @param x The numerator of the rational number * @param y The denominator of the rational number */ public Rational(int x, int y) { int g = gcd(Math.abs(x), Math.abs(y)); num = x / g; den = Math.abs(y) / g; if (y < 0) num = -num; } /** * Adds the rational number r to this one and returns the sum. * @param r The rational number to be added * @return The sum of the current number and r */ public Rational add(Rational r) { return new Rational(this.num * r.den + r.num * this.den, this.den * r.den); } The primary constructor creates a new Rational from the numerator and denominator. The call to gcd ensures that the fraction is reduced to lowest terms. The add method creates a new Rational object using the addition rule. The two rational values appear in this and r. The Rational Class /** * The Rational class is used to represent rational numbers, which * are defined to be the quotient of two integers. */ public class Rational { /** Creates a new Rational initialized to zero. */ public Rational() { this(0); } /** * Creates a new Rational from the integer argument. * @param n The initial value */ public Rational(int n) { this(n, 1); } page 2 of 5 skip code

  39. /** * Subtracts the rational number r from this one. * @param r The rational number to be subtracted * @return The result of subtracting r from the current number */ public Rational subtract(Rational r) { return new Rational(this.num * r.den - r.num * this.den, this.den * r.den); } /** * Multiplies this number by the rational number r. * @param r The rational number used as a multiplier * @return The result of multiplying the current number by r */ public Rational multiply(Rational r) { return new Rational(this.num * r.num, this.den * r.den); } These methods (along with divide on the next page) work just like the add method but use a different formula. Note that these methods do have access to the components of r. The Rational Class /** * Creates a new Rational with the value x / y. * @param x The numerator of the rational number * @param y The denominator of the rational number */ public Rational(int x, int y) { int g = gcd(Math.abs(x), Math.abs(y)); num = x / g; den = Math.abs(y) / g; if (y < 0) num = -num; } /** * Adds the rational number r to this one and returns the sum. * @param r The rational number to be added * @return The sum of the current number and r */ public Rational add(Rational r) { return new Rational(this.num * r.den + r.num * this.den, this.den * r.den); } page 3 of 5 skip code

  40. /** * Divides this number by the rational number r. * @param r The rational number used as a divisor * @return The result of dividing the current number by r */ public Rational divide(Rational r) { return new Rational(this.num * r.den, this.den * r.num); } /** * Creates a string representation of this rational number. * @return The string representation of this rational number */ public String toString() { if (den == 1) { return "" + num; } else { return num + "/" + den; } } This method converts the Rational number to its string form. If the denominator is 1, the number is displayed as an integer. The Rational Class /** * Subtracts the rational number r from this one. * @param r The rational number to be subtracted * @return The result of subtracting r from the current number */ public Rational subtract(Rational r) { return new Rational(this.num * r.den - r.num * this.den, this.den * r.den); } /** * Multiplies this number by the rational number r. * @param r The rational number used as a multiplier * @return The result of multiplying the current number by r */ public Rational multiply(Rational r) { return new Rational(this.num * r.num, this.den * r.den); } page 4 of 5 skip code

  41. /** * CalculatesthegreatestcommondivisorusingEuclid'salgorithm. * @param x First integer * @param y Second integer * @return The greatest common divisor of x and y */ private int gcd(int x, int y) { int r = x % y; while (r != 0) { x = y; y = r; r = x % y; } return y; } /* Private instance variables */ private int num; /* The numerator of this Rational */ private int den; /* The denominator of this Rational */ } Euclid’s gcd method is declared to be private because it is part of the implementation of this class and is never used outside of it. As always, the instance variables are private to this class. The Rational Class /** * Divides this number by the rational number r. * @param r The rational number used as a divisor * @return The result of dividing the current number by r */ public Rational divide(Rational r) { return new Rational(this.num * r.den, this.den * r.num); } /** * Creates a string representation of this rational number. * @return The string representation of this rational number */ public String toString() { if (den == 1) { return "" + num; } else { return num + "/" + den; } } page 5 of 5 skip code

  42. 1 1 1 • With rational arithmetic, the computation is exact. If you write this same program using variables of type double, the result looks like this: 2 3 6 1.0/2.0 + 1.0/3.0 + 1.0/6.0 = 0.999999999999999 RoundoffExample Simulating Rational Calculation • The next slide works through all the steps in the calculation of a simple program that adds three rational numbers. + + • The simulation treats the Rational values as abstract objects. Chapter 7 reprises the example showing the memory structure.

  43. public Rational(int x, int y) { int g = gcd(Math.abs(x), Math.abs(y)); num = x / g; den = Math.abs(y) / g; if (y < 0) num = -num; } public Rational(int x, int y) { int g = gcd(Math.abs(x), Math.abs(y)); num = x / g; den = Math.abs(y) / g; if (y < 0) num = -num; } public Rational(int x, int y) { int g = gcd(Math.abs(x), Math.abs(y)); num = x / g; den = Math.abs(y) / g; if (y < 0) num = -num; } public Rational add(Rational r) { return new Rational( this.num * r.den + r.num * this.den , this.den * r.den ); } public Rational add(Rational r) { return new Rational( this.num * r.den + r.num * this.den , this.den * r.den ); } public Rational(int x, int y) { int g = gcd(Math.abs(x), Math.abs(y)); num = x / g; den = Math.abs(y) / g; if (y < 0) num = -num; } public Rational(int x, int y) { int g = gcd(Math.abs(x), Math.abs(y)); num = x / g; den = Math.abs(y) / g; if (y < 0) num = -num; } public void run(){ Rational a = new Rational(1, 2); Rational b = new Rational(1, 3); Rational c = new Rational(1, 6); Rational sum = a.add(b).add(c); println(a + " + " + b + " + " + c + " = " + sum); } temporary result this this this this this this this a a b b c c sum sum r r x x x x x y y y y y g g g g g num num num num num num num 5 1 num num 1 1 5 36 1 1 1 3 2 6 6 36 2 6 den den den den den den den 6 3 den den 1 1 1 1 1 1 5 1 1 TestRational 3 6 6 2 1 6 3 2 1 Adding Three Rational Values public void run(){ Rational a = new Rational(1, 2); Rational b = new Rational(1, 3); Rational c = new Rational(1, 6); Rational sum = a.add(b).add(c); println(a + " + " + b + " + " + c + " = " + sum); } 5 36 36 6 1 1 1 1 1 1 2 6 3 1 5 36 1 1 6 1/2 + 1/3 + 1/6 = 1 skip simulation

  44. Suppose, for example, that you wanted to define a new class called FilledRect that is similar to the GRect class, except that it is filled rather than outlined by default. Moreover, as a convenience, you would like to be able to specify an optional color for the rectangle as part of the constructor. Calling add(new FilledRect(10, 10, 100, 75, Color.RED)); for example, should create a 100x75 rectangle solidly filled in red and then add it to the canvas at the point (10,10). Extending Existing Classes • The examples shown in the earlier slides have all extended the built-in Object class. More often than not, however, you will find that you want to extend an existing class to create a new class that inherits most of its behavior from its superclass but makes some small extensions or changes. • The code for the FilledRect class appears on the next slide.

  45. This syntax calls the superclass constructor. This syntax calls another constructor in this class. The FilledRect Class /** * This class is a GObject subclass that is almost identical * to GRect except that it starts out filled instead of outlined. */ public class FilledRect extends GRect { /** CreatesanewFilledRectwiththespecifiedbounds. */ public FilledRect(double x, double y, double width, double height) { super(x, y, width, height); setFilled(true); } /** CreatesanewFilledRectwiththespecifiedboundsandcolor. */ public FilledRect(double x, double y, double width, double height, Color color) { this(x, y, width, height); setColor(color); } }

  46. Rules for Inherited Constructors • Whenever you create an object of an extended class, Java must call some constructor for the superclass object to ensure that its structure is correctly initialized. • If the superclass does not define any explicit constructors, Java automatically provides a default constructor with an empty body. • Java therefore invokes the superclass constructor in one of the following ways: • Classes that begin with an explicit call to this invoke one of the other constructors for this class, delegating responsibility to that constructor for making sure that the superclass constructor gets called. • Classes that begin with a call to super invoke the constructor in the superclass that matches the argument list provided. • Classes that begin with no call to either super or this invoke the default superclass constructor with no arguments.

  47. If you need to invoke the original version of a method, you can do so by using the keyword super as a receiver. For example, if you needed to call the original version of an init method as specified by the superclass, you could call super.init(); Rules for Inherited Methods • When one class extends another, the subclass is allowed to override method definitions in its superclass. Whenever you invoke that method on an instance of the extended class, Java chooses the new version of the method provided by that class and not the original version provided by the superclass. • The decision about which version of a method to use is always made on the basis of what the object in fact is and not on what it happens to be declared as at that point in the code.

  48. The End

More Related