vote up 5 vote down star
1

Hello,

I have a question about default constructors and inheritance in Java.

Generally, if you write a class and do not include any constructor, Java provides automatically for you a default constructor (one without parameters), which initializes all instance variables of the class (if there are any) with some default values (0, null, or false). If you write a constructor, however, with some parameters, and you don't write any default constructor, then Java does not provide a default constructor. My question is: what is the case with classes, which inherit from other classes - if I write a constructor with some parameters in them, but don't include a default constructor, do they inherit the default constructor of the super class?

Thank you.

flag

21% accept rate

5 Answers

vote up 11 vote down

Constructors are not inherited.

Also, the initialization of fields is done by the virtual machine, not the default constructor. The default constructor just invokes the default constructor of the superclass, and the default constructor of Object is empty. The good point of this design is that there is no way to ever access uninitialized fields.

link|flag
Yes, I've just understood this, potyl below has pointed this out. But how (and when) are the fields initialised then? (please, see my comment on the potyl's answer). – gemm Feb 8 at 11:55
Is it the case that when I create the object, then Java automatically gives the default values? But then again, we do create objects with constructors, right? – gemm Feb 8 at 11:57
Yes, it took a while to do the research w.r.t. initialization. – starblue Feb 8 at 12:07
Thank you, I have also found a nice article exactly about this - initialization in Java, here: javaworld.com/javaworld/jw-03-1998/… – gemm Feb 8 at 12:47
vote up 2 vote down

Unless you use super(...) a constructor calls the empty constructor of its parent. Note: It does this on all you classes, even the ones which extend Object.

This is not inheriting, the subclasses don't get the same constructors with the same arguments. However, you can add constructors which call one of the constructors of the super class.

link|flag
With "empty constructor" you mean the default constructor, right? – gemm Feb 8 at 11:33
And what if the parent does not have a default constructor? – gemm Feb 8 at 11:33
Here I mean a constructor with no arguments. Typically the default constructor is one which is not defined at all. You can define a constructor with no arguments. – Peter Lawrey Feb 8 at 11:39
If the parent does not have a constructor with no arguments, you must call super(...) for a valid constructor in the super class. – Peter Lawrey Feb 8 at 11:40
You mean for a "valid constructor in the " SUB (derived) class ? – gemm Feb 8 at 11:49
show 3 more comments
vote up 2 vote down

If you provide a constructor then Java will not generate you a default empty constructor. So your derived class will only be able to call your constructor.

The default constructor doesn't initialize your private variables to default values. The proof is that it's possible to write a class that doesn't have a default constructor and has its private members initialized to default values. Here's an example:

public class Test {

	public String s;
	public int i;

	public Test(String s, int i) {
		this.s = s;
		this.i = i;
	}

	public Test(boolean b) {
		// Empty on purpose!
	}

	public String toString() {
		return "Test (s = " + this.s + ", i = " +  this.i + ")";
	}

	public static void main (String [] args) {
		Test test_empty = new Test(true);
		Test test_full = new Test("string", 42);
		System.out.println("Test empty:" + test_empty);
		System.out.println("Test full:"  + test_full);
	}
}
link|flag
That's interesting! I have lived quite a long time with the assumption that if you don't initialize the instance variables in a constructor, then Java does this in the default constructor. So, in this case how are the variables initialized? – gemm Feb 8 at 11:41
Here I have found a nice article about initialization in Java, answering my question: javaworld.com/javaworld/jw-03-1998/… – gemm Feb 8 at 12:48
Creating an object instance requires that the operator "new" allocates memory and invokes a constructor (used for initial logic). Our constructors take care only of the latter. I'm guessing that the first part takes care of the default initialization of the data members while allocating memory. – potyl Feb 8 at 18:22
vote up 1 vote down
  1. If you do not make a constructor, the default empty constructor is automatically created.

  2. If any constructor does not explicitly call a super or this constructor as its first statement, a call to super() is automatically added.

Always.

link|flag
vote up 0 vote down

class Box{ double width; double height; double depth; Box(Box ob){ width=ob.width; height=ob.height; depth=ob.depth; }

Box (double w,double h,double d){
    width=w;
    height=h;
    depth=d;
     }
Box(double len){
    width=height=depth=len;
}
*****Box(){

}*****
double volume(){
    return width*height*depth;
}

} class Boxweight extends Box{ double weight; Boxweight(double w,double h,double d,double m){ width=w; height=h; depth=d; weight=m;

}

} class Access { public static void main(String args[]){ Boxweight mybox1=new Boxweight(10,20,30,3); Boxweight mybox2=new Boxweight(1,2,3,30); double vol; vol=mybox1.volume(); System.out.println("Volume of mybox1 is " + vol); System.out.println("Weight of mybox1 is " + mybox1.weight); System.out.println("");

    vol=mybox2.volume();
    System.out.println("Volume of mybox2 is " + vol);
    System.out.println("weight of mybox1 is " + mybox2.weight);


}

}

In the above prog ram without the empty constructor box the program cannot run,can anyone tell me the reason????????

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.