Computer Science, asked by Akonvict8492, 1 year ago

This is inavaiable for static member function

Answers

Answered by D33PANWAR1
0
It's because static members are associated with the class as a whole whereas non-static members are associated with the individual objects of the class.

And since only objects have a this-pointer they're available in non-static members only.

D33PANWAR1
Similar questions