Static members สมาชิกแบบคงที่
A class can contain static members, either data or functions. คลาสประกอบด้วยสมาชิกถาวร ข้อมูลหรือฟังก์ชัน
Static data members of a class are also known as "class variables", because there is only one unique value for all
the objects of that same class. Their content is not different from one object of this class to another.
For example, it may be used for a variable within a class that can contain a counter with the number of objects of
that class that are currently allocated, as in the following example: