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

summarize halerambos & holbon
David Reply
the Three stages of Auguste Comte
Clementina Reply
what are agents of socialization
Antonio Reply
sociology of education
Nuhu Reply
definition of sociology of education
Nuhu
what is culture
Abdulrahim Reply
shared beliefs, values, and practices
AI-Robot
What are the two type of scientific method
ogunniran Reply
I'm willing to join you
Aceng Reply
what are the scientific method of sociology
Man
what is socialization
ogunniran Reply
the process wherein people come to understand societal norms and expectations, to accept society's beliefs, and to be aware of societal values
AI-Robot
scientific method in doing research
ogunniran
defimition of sickness in afica
Anita
Cosmology
ogunniran
Hmmm
ogunniran
list and explain the terms that found in society
REMMY Reply
list and explain the terms that found in society
Mukhtar
what are the agents of socialization
Antonio
Family Peer group Institution
Abdulwajud
I mean the definition
Antonio
ways of perceived deviance indifferent society
Naomi Reply
reasons of joining groups
SAM
to bring development to the nation at large
Hyellafiya
entails of consultative and consensus building from others
Gadama
World first Sociologist?
Abu
What is evolutionary model
Muhammad Reply
Evolution models refer to mathematical and computational representations of the processes involved in biological evolution. These models aim to simulate and understand how species change over time through mechanisms such as natural selection, genetic drift, and mutation. Evolutionary models can be u
faruk
what are the modern trends in religious behaviours
Selekeye Reply
what are social norms
Daniel Reply
shared standards of acceptable behavior by the group or appropriate behavior in a particular institution or those behaviors that are acceptable in a society
Lucius
that is how i understood it
Lucius
examples of societal norms
Diamond
Discuss the characteristics of the research located within positivist and the interpretivist paradigm
Tariro Reply
what is Industrialisation
Selekeye Reply
industrialization
Angelo
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