Is super() used to call the parent constructor?
Please explain super().
|
|
It can be used also with arguments. I.e. Also it can be used to call methods from the parent. I.e. More info an tutorial here |
|||
|
|
Yes.
Here's the official tutorial: http://download.oracle.com/javase/tutorial/java/IandI/super.html. |
|||||||||||||||
|
|
Yes, There is also a A quick google for "Java super" results in this |
|||
|
|
|
1.Super keyword is used to call immediate parent. 2.Super keyword can be used with instance members i.e., instance variables and instance methods. 3.Super keyword can be used within constructor to call the constructor of parent class. OK now let’s practically implement this points of super keyword. Check out the difference between program 1 and 2. Here program 2 proofs our first statement of Super keyword in Java. Program 1
Output : - 200 200 Now check out the program 2 and try to figure out the main difference. Program 2
Output 100 200 In the program 1, the output was only of the derived class. It couldn’t print the variable of base class or parent class. But in the program 2, we used a super keyword with the variable a while printing its output and instead of printing the value of variable a of derived, it printed the value of variable a of base class. So it proofs that Super keyword is used to call immediate parent. OK now check out the difference between program 3 and program 4 Program 3
Output 200 Here the output is 200. When we called the show function, the show function of derived class was called. But what should we do if we want to call the show function of the parent class. Check out the program 4 for solution. Program 4
Output 100 200 Here we are getting two output 100 and 200. When the show function of derived class is invoke, it first calls the show function of parent class because inside the show function of derived class we called the show function of parent class by putting the super keyword before the function name. |
||||
|
Yes. Have a look at this example:
Prints:
|
|||||||||
|
|
That is correct. Super is used to call the parent constructor. So suppose you have a code block like so
Then you can assign a value to the member variable n. |
|||
|
|
|
Constructors
Methods
|
|||
|
|
|
If your method overrides one of its superclass's methods, you can invoke the overridden method through the use of the keyword super. You can also use super to refer to a hidden field (although hiding fields is discouraged). Consider this class, Superclass: public class Superclass {
} Here is a subclass, called Subclass, that overrides printMethod(): public class Subclass extends Superclass {
} Within Subclass, the simple name printMethod() refers to the one declared in Subclass, which overrides the one in Superclass. So, to refer to printMethod() inherited from Superclass, Subclass must use a qualified name, using super as shown. Compiling and executing Subclass prints the following: Printed in Superclass. Printed in Subclass Subclass Constructors The following example illustrates how to use the super keyword to invoke a superclass's constructor. Recall from the Bicycle example that MountainBike is a subclass of Bicycle. Here is the MountainBike (subclass) constructor that calls the superclass constructor and then adds initialization code of its own: public MountainBike(int startHeight,
int startCadence,
int startSpeed,
int startGear) {
super(startCadence, startSpeed, startGear);
seatHeight = startHeight;
} The syntax for calling a superclass constructor is super(); |
|||
|
|
