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;

    obj.*bpm = 1;
    return 0;
}

When to use "Pointer to members" in design/code to improve my design/coding practice. *

link|improve this question

73% accept rate
Please fix your formatting. Code needs to be prefixed with four spaces. – Ivo Sep 3 '10 at 8:40
? You are already using "Pointer to members" – KennyTM Sep 3 '10 at 8:42
2  
A good question probably would be 'when to use' pointer to members! – Chubsdad Sep 3 '10 at 8:45
1  
The question seems quite vague and badly formulated to me. – Suma Sep 3 '10 at 9:35
@ chubsdad: sorry for that I actually meant that "when to use' pointer to members". – Sudhendu Sharma Sep 3 '10 at 10:14
feedback

closed as not a real question by Suma, Andrew Aylett, Kirill V. Lyadvinsky, jpalecek, Graviton Sep 4 '10 at 12:25

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

7 Answers

up vote 3 down vote accepted

An example from STL may help.

link|improve this answer
yep, STL really lacks this functionality built-in. Using algorithms on sequences of first elements of pairs for instance is cumbersome. – Alexandre C. Sep 3 '10 at 9:42
feedback

Talking about design/coding practice then, to me, it's not a good design to use a "pointer to member" to access your members which are anyway public and can be accessed in more obvious ways.

link|improve this answer
feedback

Sometimes pointers to member can be used to avoid code duplication when a similar functionality is required for multiple members. An alternative is to use enum to identify the members and store them as array instead.

struct Foo
{
  float a;
  float b;
};

void Interpolate(const Foo &x, const Foo &y, float f, int Foo::*member)
{
  return x.*member*(1-f)+y.*member*f;
}

int main()
{
  Foo x,y;
  float ia = Interpolate(x,y,0.5,&Foo::a);
  float ib = Interpolate(x,y,0.5,&Foo::b);
}

This is just sample, the the interpolate is short and simple, but once a similar functionality is complex, this can be really beneficial.

link|improve this answer
Is it a good idea to have some other entity (namespace function) in the system working on (supposedly private) data of 'Foo'? – Chubsdad Sep 3 '10 at 9:44
1  
This is just a concept example. In practice either Interpolate would be a member function, or you would access a and b via member functions and provide pointers to member functions instead. – Suma Sep 3 '10 at 9:49
feedback

Pointer to members have similar uses than pointers to functions. When you need them (very rarely in practice), you'll know it.

One possible use case I encountered before is to specialize an algorithm on some behavior, with templates, with the only goal of not repeating oneself:

struct foo
{
    double f1(double);
    ...
    double fn(double);
    template <double (foo::*)(double)> double some_algorithm(...);
};

then you use a.some_algorithm<a::&fi>(...).

link|improve this answer
feedback

I think you can see the power of pointers to member types if you check out Stroustrup's example:

class Interface {
    public:
         virtual start() = 0;
         virtual stop() = 0;
         virtual pause() = 0;
         virtual resume() = 0;

         virtual ~Interface() { }
}

typedef void (Interface::*P_MEM) (); // pointer to member type

map<string, Interface*> variable;
map<string, P_MEM>      operation;

void call_member( string var, string oper )
{
    (variable[var]->*operation[oper])();  // var.oper()
}

This allows for dynamic access of a function, or variable.

  • You can also use it in a factory of a class, to set the behaviour.

How else would you set the behaviour of a certain algorithm ( see Alexandre's example )?

  • You can write a behaviour class, but then you'd have to create one class for each function, and yet another interface for all classes, so that your algorithm calls that. Isn't it a waste if you don't have any data in the classes ?
link|improve this answer
feedback

Pointer to members can be useful for intrusive lists

template<typename N, N *N::*nextp>
class LinkedList {
public:
  LinkedList()
    :head(0)
  { }

  void add(N *item) {
    item->*nextp = head;
    head = item;
  }

  N *gethead() { return head; }

private:
  N *head;
};

struct Node {
  int data;
  Node *next;
};

int main() {
  LinkedList<Node, &Node::next> n;
  Node a1 = { 1 };
  Node a2 = { 2 };
  n.add(&a2);
  n.add(&a1);
  // ...
}
link|improve this answer
feedback

I wouldn't worry too much about pointers to members. In >15 years of C++ I have used them once, about ten years ago.

Features already built-in into the language (namely virtual functions) prevent you from having to manually fiddle with member pointers.

link|improve this answer
You never used MFC then. – Alexandre C. Sep 3 '10 at 9:37
2  
@Alexandre: No, I didn't. And I'm glad about that. :) – sbi Sep 3 '10 at 10:17
1  
@sbi: you're just lucky – Alexandre C. Sep 3 '10 at 10:55
@Alexandre: I'm not sure. I might not have turned down a job offer only because it would have been an MFC job, but that would have had a very strong negative influence on the decision making process. :) – sbi Sep 3 '10 at 11:14
@sbi: MFC is on its way to being eradicated now, so you should be pretty safe. I do hate MFC and ATL, from the heart of my heart, but I got hired to do interesting math, but with MFC and COM layers everywhere... – Alexandre C. Sep 3 '10 at 11:44
show 1 more comment
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.