Namespaces
Variants
Actions

Classes

From cppreference.com
Revision as of 05:09, 6 October 2013 by FJW (Talk | contribs)


C++ is an object oriented language which means, that data and functions can be organized into objects.

A description of the data and functionality of an object is called a class. From this class any number of objects can be created, by so called instantiation of the class. Those objects can be used according to the description of the class.