Searching for: Methods in C++
Local Variables
Language: C++

Local variables are declared in methods and blocks. They are only accessible within that certain method or block.

Destructor
Language: C++

The destructor is a method called when the object is destroyed.

Constructor
Language: C++

A constructor is a special method that builds the instance of an object when a new object is created.

Inheritance
Language: C++

Inheritance is used to inherit another class' members, including fields and methods. A derived class inherits a base class' members.


  Next Page >