Core Java Interview Questions and Answers
<< Previous Question Next Question >>
 Question: 187 Page Views: 

How can a constructor be call from another constructor ?



Posted By: Avi Date: 4 November 2010 02:27:46 AM
 Answer:

By using this() reference.


Posted By: avibtech


Date: 4 November 2010 02:27:46 AM
Post a better Answer if you have
 
(Will show your Gravatar icon)  
  Country flag

Loading
Enter the text as shown in the image u2plZw
Related Questions
Core Java : Which Math method is used to calculate the absolute value of a number?

Which Math method is used to calculate the absolute value of a number?

The abs() method is used to calculate absolute values
Category: Core Java Date: 11/7/2010 9:08:53 AM
Core Java : Which characters may be used as the second character of an identifier, but not as the first character of an identifier?

Which characters may be used as the second character of an identifier, but not as the first characte....

The digits 0 through 9 may not be used as the first character of an identifier but they may be used ....
Category: Core Java Date: 11/7/2010 5:08:52 AM
Core Java : What is Unicode?

What is Unicode?

Unicode is used for internal representation of characters and strings and it uses 16 bits to represe....
Category: Core Java Date: 11/7/2010 4:35:52 AM
Core Java : When can an object reference be cast to an interface reference?

When can an object reference be cast to an interface reference?

An object reference be cast to an interface reference when the object implements the referenced inte....
Category: Core Java Date: 11/7/2010 2:46:53 AM
Core Java : Can a java program be compiled without main?

Can a java program be compiled without main?

Yes, it’s not required for the main method for compiling the java program. But it must have a main,....
Category: Core Java Date: 11/7/2010 1:52:47 AM