Tagged Questions
4
votes
3answers
88 views
Understanding Pointer-to-Member operators
I copied this program from a c++ practice book. What's going on behind the scenes?
The expected output is:
sum=30 sum=70
#include<iostream>
using namespace std;
class M
{
int x;
...
4
votes
3answers
1k views
Casting between void * and a pointer to member function
I'm currently using GCC 4.4, and I'm having quite the headache casting between void * and a pointer to member function. I'm trying to write an easy-to-use library for binding C++ objects to a Lua ...
3
votes
2answers
62 views
Clarification on pointer to non-static class member
When I need a pointer to member of class, I do as following
struct MyStruct
{
int foo();
};
int (MyStruct::*p)() = &MyStruct::foo;
My question is why do I need to use & operator to ...
1
vote
1answer
115 views
C++ Pointer to Members
If I have two classes that are in the same hierarchy with a member of the same name and type, what is the "correct" way to create a member pointer to the base class's variable.
Ex.
class A
{
int ...
0
votes
3answers
82 views
Assigning values to a struct member without using the members name in c?
I have a structure and what I would like to do is to assign values to its members using a for loop. That way I do not have to use the members name. Because the structure is long and i do not want 20 ...
0
votes
1answer
147 views
c++ pointer to const class member problem
I'm having this problem with C++ classes. I would like to get pointer to myBar object and store it in quxBar. The reason is I would like to be able to check the value using quxBar->getX() but I ...
0
votes
7answers
177 views
Pointer to members [closed]
In following code consider the statement :- "int B::*bpm;"
class B
{
public :
int bi;
};
class D : public B
{
};
int main()
{
D obj;
int B::*bpm;
bpm = &B::bi;
...
-2
votes
1answer
59 views
implementation of pointers to members [closed]
Since pointers to members do not affect the size of an object ,they must be computed at the run time only,right?So why use them??In a SO post,it was answered in terms of callbacks;could someone ...