"Nils" <slimb@web.de> wrote...
I have derived a class B from A. In both classes I have declared a static
variable with the same name. Do they both exists, or only the one in
Fatherclass A.
Both.
For Example:
class A{
static int a;};
class B:A{
static int a;};
.