This Pointer | Sololearn: Learn to code for FREE!
Новый курс! Каждый программист должен знать генеративный ИИ!
Попробуйте бесплатный урок
0

This Pointer

can we use this pointer with static functions? would you please give a brief description. thank you!

21st May 2018, 5:12 AM
Zohaib 👑
Zohaib 👑 - avatar
1 ответ
+ 3
No... This pointer is passed in hidden way by compiler to your class methods (non-static) and it is a constant pointer to current caller object (object on which you call method)... because of this, static class functions (that dont belong to an object) dont get need of this pointer
21st May 2018, 8:14 AM
KrOW
KrOW - avatar