Codes Academy

INHERITANCE IN C++

INHERITANCE IN C++ The capability of a class to derive properties and characteristics from another class is called Inheritance. Inheritance is one of the most important feature of Object Oriented Programming. Sub Class: The class that inherits properties from another class is called Sub class or Derived Class. Super Class:The class whose properties are inherited...

constructors and destructors

constructors Constructors are special class members which are called by the compiler every time an object of that class is instantiated. Constructors have the same name as the class and may be defined inside or outside the class definition. There are 3 types of constructors: §  Default constructors §  Parametrized constructors §  Copy constructors ...

TYPES OF MEMBER FUNCTIONS

TYPES OF MEMBER FUNCTIONS We already know what member functions are and what they do. Now lets study some special member functins present in the class. Following are different types of Member functions, 1.  Simple functions 2.  Static functions 3.  Const functions 4.  Inline functions 5.  Friend functions Simple Member functions These are the basic member function, which dont have any special keyword like static etc...

MEMBER FUNCTIONS IN CLASSES

MEMBER FUNCTIONS IN CLASSES Member functions are the functions, which have their declaration inside the class definition and works on the data members of the class. The definition of member functions can be inside or outside the definition of class. Member functions are the functions, which have their declaration inside the class definition and works on the data members...