initialization order. See also static initialization. ■ The general order of class initialization is: 1 - First all static items are initialized, in their source code order.. 2 - Then all member variables are initialized. 3 - Lastly the constructor is called. ■ Below is a simple demonstration ...