Computer Science, asked by ibrahimshariff28581, 1 year ago

Why static member function do not get this pointer?

Answers

Answered by flower161
0
It is the object address value as apointer. For static functions there is no object address at all because static function can be called even before creation of any object using scope resolution operator. Even calling with an object pointer will not associate any "this" pointer to it
Similar questions