Vxyz eom

Greenhorn
+ Follow
since Aug 02, 2011
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
1
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Vxyz eom

Matthew Brown wrote:Here's what's going on...

You aren't specifying a constructor for the B class. So the compiler inserts a default constructor, taking no arguments.

Because B is a subclass of A, any constructor of B must call a constructor of A. Again, if you omit this, the compiler will insert the call for you. But it can only insert a no-arg constructor like this. In the second case, there isn't a no-arg constructor. So if you want to inherit from B in that case you need to put in the constructor calls explicitly. For instance, like this:



Actually, writing that I've realised there were two problems. Your examples didn't have any constructors. They were ordinary methods - constructors don't have a return type.


Thanks Matthew You are Correct.
12 years ago

vibhor sharma wrote:I doubt even first one works well ..


It is not a constructor , eventually a valid java method which happens to be a same name as a class name .... remember constructors doesn't have return type, not even void .

PS : In my opinion constructors cant be inherited , be it default one ...


Now is it correct Vibhor ???
12 years ago

mrkamal joshi wrote:byte a=100;// works fine
//but
byte b=a+a;//don't why??


See This..
12 years ago
Hello Folks !
I have a problem and doubts with constructors.
does any one tell me why constructor with parameters cannot be inherit ???remember the fact that default constructor can inherit.

this works well.
But Not Working Explain with Details ....!!!
12 years ago