Re: super
Andreas Leitgeb wrote:
giuseppe.on.usenet wrote:
Andreas Leitgeb wrote:
I think the misunderstanding is far more basic.
To giuseppe:
In dir2.GrandChild's main, just remove the line, where you instantiate
Child, and leave the rest exactly as is. Recompile & run it. You'=
ll
see that instantiating class Child (or not doing it) doesn't change
anything. What does this tell you?
I am not the author :) I found that code in a certification study
guide (the original question was: What will the output be?).
That doesn't really matter. Obviously you didn't "guess" (or know)
the answer (or you wouldn't have asked here). If you are still
surprised by "super.var" and "var" being the same value, then
I advise you to still make the experiments I suggested.
Maybe
they instantiated the Child object just to try to confuse the reader.
Not primarily to confuse him, but rather to test his confusability ;-)
Andreas is completely correct, giuseppe. It's a test question, so of cours=
e they will include some irrelevant information ("red herrings") to see if =
you really know what you're doing.
It is completely unnecessary to use a compiler to answer the question once =
you understand the principles. Andreas's advice to use a compiler is to he=
lp you achieve that understanding. He did not suggest you use a compiler d=
uring the test, but during your study. Of course you are allowed to use a =
compiler when you are studying.
Unlike member methods, member variables do not override inherited variables=
.. It is rarely if ever necessary, and I would say never desirable to refer=
to a variable via the 'super.' notation. If the variable is inherited, th=
en 'super.variable' is exactly the same as 'this.variable'; both syntaxes r=
efer to the same variable. If a variable in the child class has the same n=
ame as an inherited variable from an ancestor class, then you got problems.=
It is not good to name the member variable the same as an inherited membe=
r variable; the child variable "hides" the ancestor variable.
<http://java.sun.com/docs/books/jls/third_edition/html/classes.html#8.3>
So in the problem you showed us, the line
protected int var = 1;
declares and initializes a member variable that is inherited by descendant =
classes. ('protected' means the variable is accessible to child types and =
to types in the same package.)
So in the 'GrandChild' class, the 'main()' method:
public static void main(String[] args) {
GrandChild gc = new GrandChild();
gc.var = 2;
Child c = new Child();
gc.test2();
}
'gc.test2()' and 'gc.var' refer to the same exact 'var' as 'super.var' beca=
use there is no difference between 'this.var' and 'super.var' inside 'Grand=
Child'.
Notice that the 'Child' declaration, 'Child c = new Child();', creates an=
unreferenced variable 'c'. Nothing uses 'c' - it's just allocated and gar=
bage collected. The JVM very likely will not even allocate that object in =
any run of the program.
--
Lew