variables dynamically bound
807603Dec 4 2007 — edited Dec 5 2007From
http://bobcat.webappcabaret.net/javachina/faq/03.htm#inh_poly
Q. Are non-static fields (variables) dynamically bound?
A: No, fields or variables are always bound at compiling time.
* Fields or variables is static bound (decided) at compile time.
* Non static method is dynamically bound (decided) at runtime.
Could anyone can explain ?
What is mean by dynamically bound?