Monday 15 November 2010

Chapter 9 Exercises

Barnes and Kolling Chapter Nine Questions


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?

 the item  class compiles. however the DVD class and CD class cannot access the superclass fields.
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.

    public void print()
    {
        System.out.print("title: " + title);
        
    } 

 public void print()
    {
        System.out.print("Director:" + director);
       
    }

public void print()
    {
        System.out.print("Artist:" + artist);
       
    }



The class compiles!

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?



 public void print()
    {
        super.print();
        System.out.print("Artist:" + artist);
it compiles and behaves same as before

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.

public void print()
    {
        super.print();
System.out.println("CD:")
        System.out.print("Artist:" + artist);
5
Look up toString in the library documentation.
What are its parameters?
What is its return type?

 no parameters
it returns type 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.



OK
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.

 print method in CD:

public void print()
    {
        System.out.print("CD: " + artist + ":   ");
        super.print();
        System.out.println("tracks: "+ numberOfTracks);
    }


print method in Item:

System.out.print(title);
        if (gotIt) {
            System.out.println("*");
        }
        else {
            System.out.println("");
        }
        System.out.println(playingTime + " minutes");
        System.out.println(comment);
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.

?????



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?

Device, since it is the superclass
13
In the same situation as in the previous exercise, if both classes have an implementation of methodgetName(), which one will be executed?
The method in class printer
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?

Student is a subclass of OBJECT, therefore the method will work since it is invoked from the object class.

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, it will return the toString output since it is in the Superduper class object.
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());
}

?????
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;







No comments:

Post a Comment