[Home]
[Edit this page]
[Recent Changes]
[Special Pages]
[Help]
CppDerivedClass
[Edit this page] [Page history] [What links here] [Discuss this topic] [Printer Friendly]
CppDerivedClass
(C++) Derived class
A class that is inherited from a base class.
class Base
{
public:
int mX;
};
class Derived: public Base
{
public:
int mY;
};
int main()
{
Derived d;
d.mY = 0;
d.mX = 0; //mX is inherited from Base
}
[Edit this page] [Page history] [What links here] [Discuss this topic] [Printer Friendly]
