vote up 3 vote down star
1

What is the point of them?
I've never used them for anything, and I can't see myself needing to use them at all.
Am I missing something about them or are they pretty much useless?

EDIT: I don't know much about them, so a description about them might be necessary...

flag
Is stackoverflow.com/questions/654853/… what you are looking for? – nevets1219 Apr 14 at 7:01
No, more specifically, the .* and the ->* operators. – DeadHead Apr 14 at 7:05
I suspect not, I think he is talking about pointers to member operators (e.g., operator+) – 1800 INFORMATION Apr 14 at 7:05
@nevets: It was related to what I was looking for, but that question didn't have the more basic information in there which I needed to connect it to what I was asking. – DeadHead Apr 14 at 7:31
I've also updated my answer to describe what a PMF is. Hopefully this makes it easier for you to compare against plain jane function pointers. :-) – Chris Jester-Young Apr 14 at 7:47

3 Answers

vote up 8 vote down check

A PMF (pointer to member function) is like a normal (static) function pointer, except, because non-static member functions require the this object to be specified, the PMF invocation syntax (.* or ->*) allow the this object to be specified (on the left-hand side).

Here's an example of PMFs in use (note the "magic" line with the .* operator being used: (lhs.*opit->second)(...), and the syntax for creating a PMF, &class::func):

#include <complex>
#include <iostream>
#include <map>
#include <stack>
#include <string>
#include <boost/lexical_cast.hpp>

using std::cin; using std::complex; using::std::cout; using std::map;
using std::stack; using std::string; using boost::lexical_cast;

int
main()
{
    typedef complex<double> complexd;
    typedef complexd& (complexd::*complexd_pmf)(complexd const&);
    typedef map<string, complexd_pmf> opmap;

    opmap ops;
    ops["+"] = &complexd::operator+=;
    ops["-"] = &complexd::operator-=;
    ops["*"] = &complexd::operator*=;
    ops["/"] = &complexd::operator/=;

    stack<complexd> st;
    string token;
    while (cin >> token) {
        opmap::const_iterator opit(ops.find(token));
        if (opit != ops.end()) {
            complexd rhs(st.top());
            st.pop();
                                        // For example of ->* syntax:
            complexd& lhs(st.top());    // complexd* lhs(&st.top());
            (lhs.*opit->second)(rhs);   // (lhs->*opit->second)(rhs);
            cout << lhs << '\n';        // cout << *lhs << '\n';
        } else {
            st.push(lexical_cast<complexd>(token));
        }
    }
}

It's a simple RPN calculator using complex numbers instead of real numbers (mostly because std::complex is a class type with overloaded operators). I've tested this with G++; your mileage may vary with other platforms.

Input should be of the form (0,1), with no spaces in between the numbers (or anywhere else, since tokenisation is done on spaces).

link|flag
The code has no error checking, but I hope you get the idea anyway. :-D – Chris Jester-Young Apr 14 at 7:36
Yeah, it makes sense. Thanks for the example. – DeadHead Apr 14 at 7:44
vote up 4 vote down

Bind a pointer to a function is very useful in a variety of situations. Basically, it allows you to refer to functions as variables, which lets you choose, at runtime, which function you will call.

One use for this is in "callbacks". Say I want some background process to work for a while, and let us know when it's done (so we can update the GUI, or something). But sometimes, we may want this background process to call one method, and sometimes, we want it to call a different method. Rather than writing two versions of this background process, we can write it so that the background process receives a pointer to the function we want it to "call back". Then, when the process is finished, it calls whichever function it was given in the first place.

Basically, it just lets you have a heap more flexibility in deciding which method to call. In that way, it's quite similar to polymorphism. In fact, behind the scenes, I believe C++ uses pointers to functions to facilitate polymorphism (by storing a different table of pointers to functions for each class)

link|flag
vote up 1 vote down

If I understand your question correctly. Why not?

struct test
{
    test* operator->() 
    { 
        std::cout << "test::operator->";
        return this; 
    }
};

test tt;
boost::bind( &test::operator ->, _1 )( tt );
link|flag
My question was more about, what are those operators, and not so much as what are the alternatives to using the operators. – DeadHead Apr 14 at 7:55

Your Answer

Get an OpenID
or

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