Difference between static and non static data member functions in c++
Answers
Answered by
0
Static member functions (C++ only) You cannot have static and nonstatic member functions with the same names and the same number and type of arguments. Like static data members, you may access a static member function f() of a class A without using an object of class A .
Answered by
2
Answer:
heya..
Static member functions (C++ only) You cannot have static and nonstatic member functions with the same names and the same number and type of arguments. Like static data members, you may access a static member function f() of a class A without using an object of class A .
i hope its help u
Similar questions