1 | Open your last version of the DoME project. Remove the print() method from class Item and move it into the Video and CD classes. Compile. What do you observe? | It wont compile. There is a compilation error. It cannot access the fields or the methods of the superclass. Did this in class. |
2 | In your DoME project, add a print() method in class Item again. For now write the method body with a single statement that prints out only the title. Then modify the print() methods in CD andVideo so that the CD version prints out only the artist and the Video version prints only the director. This removes the other errors ecountered above. You should now have a situation coressponding to figure 9.4 in the text, with print() methods in three classes. Compile your project. This design should work, if there are errors remove them. Before executing, predict which of the print()methods will get called if you execute theDatabase list() method. Try it out: Enter a CD and a video into the database and call the Database list() method. Which print() methods were executed? Was your prediction correct? Try to explain your observations. | I predict that Cd and Dvd will be executed when we compile. I was wrong. It executes the print() method of the subclass. |
3 | Modify your latest version of the DoME project to include the super call in the print() method. Test it. Does it behave as expected? Do you see any problems with this solution? | Done. super.print(); The super constructor tells the constructor to execute the print() method of the superclass. |
4 | Change the format of the output so that it prints the string "CD: " or Video: " (depending on the type of item) in front of the details. | Done. We just needed to add the print() method of CD and Video. |
5 | Look up toString in the library documentation. What are its parameters? What is its return type? | toString does not take any parameters. It is because it is a return type of string. |
6 | .... You can easily try this out. Create an object of class Video in your project, and then invoke the toString() method from theObject submenu in the object's popup menu. | Done.Class name is returned with a attherate sign which looks like this"@". But why? |
7 | The version of print() shown in Code 9.1 produces the output shown in text figure 9.9. Reorder the staements in the method in your version of the DoME project so that it prints the details as shown in text Figure 9.10. | Done. This is the to print() method for the CD: public void print() { System.out.print("CD: " + artist + ": "); super.print(); System.out.println("tracks: "+ numberOfTracks); } |
8 | Having to use a superclass call in print() is somewhat restrictive in the ways we can format the output, because it is dependent on the way the superclass formats its fields. Make any necessary changes to the Item class and to the print() method of CD so that it produces the output shown in text Figure 9.11. Any changes you make to the Item class should be visible only to its subclasses. Hint: You used to use protected fields to do this. | Done. All the fields in Item are protected. But we need to organize how we print out the different items. |
9 | Implement a transporter room with inheritance in your version of the zuul project. | Not applicable. Chapter 7? |
10 | Discuss how inheritance could be used in thezuul project to implement a player and a monster class. | NA |
11 | Could (or should) inheritance be used to create an inheritance relationship (super-, sub-, or sibling class) between a character in the game and an item? | NA |
12 | Assume you see the following lines of code: Device dev = new Printer(); dev.getName(); Printer is a subclass of Device. Which of these classes must have a definition of methodgetName() for this code to compile? | To successfully compile, the complier gives the static type the same method that it is being called for. getName() method. -- This method has to be given to the device class. |
13 | In the same situation as in the previous exercise, if both classes have an implementation of methodgetName(), which one will be executed? | The one that is in printer will be executed. |
14 | Assume you write a class Student, which does not have a declared superclass. You do not write a toString() method. Consider the following lines of code. Student st = new Student(); String s = st.toString(); Will these lines compile? What exactly will happen when you try to execute? | Methods from the object class will be called because all the objects in primitive inherit or extend to object class. String s will now store the result of st.toString(). |
15 | In the same situation as the previous exercise (class Student, no toString() method), will the following lines compile? Why? Student st = new Student(); System.out.println(st); | Yes. The toString method is immediately returned. |
16 | Assume your class Student overrides toString()so that it returns the student's name. You now have a list of students. Will the following code compile? If not, why not? If yes, what will it print? Explain in detail what happens. Iterator it = myList.iterator(); while (it.hasNext()) { System.out.println(it.next()); } | toString() of Student will be returned and printed. |
17 | Write a few lines of code that result in a situation where a variable x has the static type T and thedynamic type D. | T x = new D(); This can only work if D is a subclass of T and directly inheriting from the subclass I think. |
Saturday, 27 November 2010
Chapter 9
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment