Search Interview Questions | More than 3000 questions in repository. There are more than 900 unanswered questions. Click here and help us by providing the answer. Have a video suggestion. Click Correct / Improve and please let us know. |
|
| |||||||||||
Core Java - Interview Questions and Answers for 'Constructor chaining' - 3 question(s) found - Order By Newest | |||||||||||
| |||||||||||
Ans. "this" keyword is a reference to the current object and can be used for following - 1. Passing itself to another method. 2. Referring to the instance variable when local variable has the same name. 3. Calling another constructor in constructor chaining. | |||||||||||
Sample Code for this keyword | |||||||||||
Help us improve. Please let us know the company, where you were asked this question : | |||||||||||
Like Discuss Correct / Improve  java   this   object reference   constructor chaining intermediate   rare | |||||||||||
Try 3 Question(s) Test | |||||||||||
Related Questions | |||||||||||
What is the default value of a declared object reference ? | |||||||||||
Is it a bad practice to initialize object reference to Null ? | |||||||||||
How different is it when final applied to variables and object references ? | |||||||||||
In which memory segment - heap or stack, the following stored by JVM 1. static members 2. objects 3. object references 4. local or method variables | |||||||||||
| |||||||||||
Ans. A child object constructor always first needs to construct its parent. In Java it is done via an implicit call to the no-args constructor as the first statement | |||||||||||
Help us improve. Please let us know the company, where you were asked this question : | |||||||||||
Like Discuss Correct / Improve  java   constructor   constructor chaining   oops   call constructor explicitly Asked in 3 Companies | |||||||||||
Try 2 Question(s) Test | |||||||||||
Related Questions | |||||||||||
What are the common uses of "this" keyword in java ? | |||||||||||
Can we call constructor explicitly ? | |||||||||||
Which of the following is not the use of this keyword ? | |||||||||||
| |||||||||||
Ans. Yes. | |||||||||||
Help us improve. Please let us know the company, where you were asked this question : | |||||||||||
Like Discuss Correct / Improve  java   constructor   constructor chaining   oops   call constructor explicitly   yes-no | |||||||||||
Try 1 Question(s) Test | |||||||||||
Related Questions | |||||||||||
What is constructor chaining and how is it achieved in Java? | |||||||||||
| |||||||||||