class Base { public: static int i; }; class Derived: public Base { ... }; Base oB; Derived oD; oB.i=0; oD.i=5;