What is "static" mean in the c++?
Sigiloso
Static 1. Within a function, there is one copy of the variable that retains its value even when the function returns. 2. Within a class, all objects share the static variable and the static variable is accessed using the class name. 3. In the global scope a static variable is local to the current file. http://msdn.microsoft.com/en-us/library/s1sb61xd(VS.80).aspx