static member functions in c ++

  • Static member of class in C ++

    Static member of class in C ++

    we can define class members as static using the static keyword in c ++. when we declare a member of a class that is static, that is, no matter how many objects of the class are created, there will only be one copy of the static member.