Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.
| A1: | Yes. They are member variables and their access can be controlled like any other. If they are private, they can be accessed only by using member functions or, more commonly, static member functions. |
| A2: | static int itsStatic; |
| A3: | static int SomeFunction(); |
| A4: | long (* function)(int); |
| A5: | long ( Car::*function)(int); |
| A6: | long ( Car::*function)(int) theArray [10]; |