Initialization of static variables

In C++, you must initialize static variables or they will not be in scope and will not be accessible.

(Note that this doesn't apply to C# or Java.)

The required initialization syntax is:

type class_name::static_variable = value

(Note that you must include the type of the static variable when you initialize it.)

(Cont'd on next slide.)