My questions is this:
why can not pass "this" to an explicit call to a constructor? example:
class MyClass {
MyClass x;
public MyClass(MyClass c){
x=c;
}
public MyClass(){
this(this); //error
}
}
|
My questions is this: why can not pass "this" to an explicit call to a constructor? example:
|
|||||||||
|
|
You are trying to pass a reference to In Java you cannot access You may need to duplicate code in the constructor:
There may be ways to hack around it using a private constructor, but then you are into hacking territory. |
|||||||||
|
|
Why do you think you need to? The other constructor will already know what 'this' is. |
|||
|
Below is a work around to this restriction. The work around is to pass a temporary holder object to the super class constructor. Then after the super class constructor has done its work, give the temporary holder object a reference to this. The parameter delta can be used to show the principal shortcoming of this workaround - what if the superclass constructor needs to use the parameter.
|
|||
|
|
|
You're trying to pass a reference to the current object into its own constructor? You can't do that for the same reason you can't be your own father... |
|||||||||||||
|