<< Chapter < Page Chapter >> Page >

Sun Dec 02 17:35:00 CST 2012

Instantiate a Date object with the noarg constructor

This program instantiates an object of the Date class using the constructor that takes no parameters.

Call the overridden toString method

Then it calls the overridden toString method to populate a String object that represents the Date object.

Following this, it displays that String object by calling the print method, producing the first part of the output shown above. (The actual date and time will vary depending on when the program is executed.)

Get the time property value

Then it calls the getTime method to get and display the value of the time property.

This is a representation of the same date and time shown above , but in milliseconds:

1354491300781

Back to Question 10

Answer 9

D. Joe Age = 35 Weight = 162.5

Explanation 9

Upgraded program from Question 8

The program used for this question is an upgrade to the program that was used for Question 8 .

Dummy class overrides the toString method

In particular, in this program, the class named Dummy overrides the toString method in such a way as to return a String representing the object that would be useful to a human observer.

The String that is returned contains the values of the instance variables of the object: name, age, and weight.

Overridden toString method code

The overridden toString method for the Dummy class is shown below for easy reference.

Overridden toString method public String toString(){ String x = name + " " +" Age = " + age + " " + " Weight = " + weight;return x; }//end toString()

The code in the overridden toString method is almost trivial.

The important thing is not the specific code in a specific overridden version of the toString method.

Why override the toString method?

Rather, the important thing is to understand why you should probably overridethe toString method in most of the new classes that you define.

In fact, you should override the toString method in all new classes that you define if a String representation of an instance of that class will ever be needed for any purpose.

The code will vary

The code required to override the toString method will vary from one class to another. The important point is that the code must return areference to a String object. The String object should encapsulate information that represents the original object in aformat that is meaningful to a human observer.

Back to Question 9

Answer 8

C. Dummy@273d3c

Explanation 8

Display an object of the Dummy class

This program instantiates a new object of the Dummy class, and passes that object's reference to the method named println .

The purpose of the println method is to display a representation of the new object that is meaningful to a human observer. Inorder to do so, it requires a String representation of the object.

The toString method

The class named Object defines a default version of a method named toString .

All classes inherit the toString method.

A child of the Object class

Those classes that extend directly from the class named Object inherit the default version of the toString method.

Questions & Answers

what is biology
Hajah Reply
the study of living organisms and their interactions with one another and their environments
AI-Robot
what is biology
Victoria Reply
HOW CAN MAN ORGAN FUNCTION
Alfred Reply
the diagram of the digestive system
Assiatu Reply
allimentary cannel
Ogenrwot
How does twins formed
William Reply
They formed in two ways first when one sperm and one egg are splited by mitosis or two sperm and two eggs join together
Oluwatobi
what is genetics
Josephine Reply
Genetics is the study of heredity
Misack
how does twins formed?
Misack
What is manual
Hassan Reply
discuss biological phenomenon and provide pieces of evidence to show that it was responsible for the formation of eukaryotic organelles
Joseph Reply
what is biology
Yousuf Reply
the study of living organisms and their interactions with one another and their environment.
Wine
discuss the biological phenomenon and provide pieces of evidence to show that it was responsible for the formation of eukaryotic organelles in an essay form
Joseph Reply
what is the blood cells
Shaker Reply
list any five characteristics of the blood cells
Shaker
lack electricity and its more savely than electronic microscope because its naturally by using of light
Abdullahi Reply
advantage of electronic microscope is easily and clearly while disadvantage is dangerous because its electronic. advantage of light microscope is savely and naturally by sun while disadvantage is not easily,means its not sharp and not clear
Abdullahi
cell theory state that every organisms composed of one or more cell,cell is the basic unit of life
Abdullahi
is like gone fail us
DENG
cells is the basic structure and functions of all living things
Ramadan
What is classification
ISCONT Reply
is organisms that are similar into groups called tara
Yamosa
in what situation (s) would be the use of a scanning electron microscope be ideal and why?
Kenna Reply
A scanning electron microscope (SEM) is ideal for situations requiring high-resolution imaging of surfaces. It is commonly used in materials science, biology, and geology to examine the topography and composition of samples at a nanoscale level. SEM is particularly useful for studying fine details,
Hilary
cell is the building block of life.
Condoleezza Reply
Got questions? Join the online conversation and get instant answers!
Jobilize.com Reply

Get Jobilize Job Search Mobile App in your pocket Now!

Get it on Google Play Download on the App Store Now




Source:  OpenStax, Object-oriented programming (oop) with java. OpenStax CNX. Jun 29, 2016 Download for free at https://legacy.cnx.org/content/col11441/1.201
Google Play and the Google Play logo are trademarks of Google Inc.

Notification Switch

Would you like to follow the 'Object-oriented programming (oop) with java' conversation and receive update notifications?

Ask