go to previous page   go to home page   go to next page

Answer:

No.


Picture of the Program

reference to an object

The speak() method is part of an object. It exists only when there is an object to contain it (unlike a static method that does not need an object). The picture shows the action as step 3 starts.

The variable anObject refers to the object that was constructed. That object contains the speak() method. So main() can find and activate speak() with:

anObject.speak();

You might think that this is a needlessly complicated way to write a message on the monitor. And you would be correct. But remember that this is a simple example of object oriented programming. Later on, when the task gets really complicated, using objects greatly simplifies programming. Writing large programs in Java takes only one third to one fifth of the time it takes to write in some other languages.


QUESTION 11:

Does the class HelloObject have a constructor?