Language
Version: C++14
Categories
-
User Program Communication
-
Variables
-
Control Flow
-
Functions and Objects
-
String Class
Search Results
Searching for: Interfaces in C++
Including Header Files
Language: C++
A C++ program can include header files. They are used to provide either an interface, which gives function prototypes for definition, or to provide pre-defined definitions.
Inheritance
Language: C++
Inheritance is used to inherit another class' members, including fields and methods. A derived class inherits a base class' members.