Category Archives: Uncategorized

26. Static class member

Static data member are class members that are declared using static keyword A static member has certain special characteristics These are: Only one copy of that member is created for the entire class and is shared by all the objects of that class , no matter how many objects are created. It is initialized to… Read More »