Answers

Question and Answer:

  Home  C++ Inline Function

⟩ Explain static member functions?

A static function can have an access to only other static members (functions or variables) declared in the same class.

A static member function can be called using the class name instead of its objects.

E.g. classname :: functionname;

 308 views

More Questions for you: