InterviewSolution
Saved Bookmarks
| 1. |
Can We Use This Pointer Inside Static Member Function? |
|
Answer» No! The this pointer cannot be USED inside a STATIC member function. This is because a static member function is NEVER CALLED through an OBJECT. No! The this pointer cannot be used inside a static member function. This is because a static member function is never called through an object. |
|