Is it possible to call a non-static data member in a static member function? And is it also possible to call a non-static member function in a static member function?
How do you do it?
|
|
|
|
|
|
|
You will need some existing object to call its non-static member function or access its non-static data member. |
||||||
|
|
|
Not normally, unless you have a static pointer to an instance. The problem is that the static method doesn't have a particular instance on which it's working. You can call the non-static member function if you pass in the instance, but otherwise, no. |
||
|
|
|
|
You need an instance to the object in order to call a non-static member function or access a non-static data member. Statics don't have that, so in general they can't, unless they got one from somewhere (i.e., you have a global table that the static function uses to get a pointer to the object.) But statics are not supposed to access non-static data . . . if they have to, they shouldn't be static. Can you show us what you are trying to do? |
||
|
|
|
|
No, thats not possible unless you can somehow gain access to an instance of the defining class. |
||
|
|
|
|
Yes to both:
Of course the mutual recursion in the above will cause a few problems :-) |
||
|
|
|
|
YES - you can, and here is how
This is the sort of a design, recursion aside, demonstrates how to call both static and non-static member functions. |
||||||||||
|
|
|
Since people are hell-bent on downvoting, here is the summary:
Non-static member data/functions rely on the
Look at the Singleton/factory method pattern -- they'll be of interest to you. |
|||
|
|
|
|
The typical use case for this would be handing off C API callbacks to object instances in a C++ project.
|
|||
|
|