Please enable JavaScript.
Coggle requires JavaScript to display documents.
c++ (essentials (operators (misc (member operator (-> (arrow) (to…
c++
essentials
-
storage classes
-
-
-
static
instructs the compiler to keep a local variable in existence during the life-time of the program instead of creating and destroying it each time it comes into and goes out of scope
-
-
-
Types
-
-
-
modifiers types
-
used to alter the meaning of the base type so that it more precisely fits the needs of various situations
-
Class
access modifiers
-
-
protected
protected member variable or function => can be accessed in child classes which are called derived classes
-
-
-
-
-
-