常量方法指针的类型是什么?

时间:2012-08-22 09:51:37

标签: c++ member-function-pointers

给出一个班级

class C {
public:
    int f (const int& n) const { return 2*n; }
    int g (const int& n) const { return 3*n; }
};

我们可以像这样定义一个函数指针pC::f

int (C::*p) (const int&) const (&C::f);

p的定义可以使用typedef分开:

typedef int (C::*Cfp_t) (const int&) const;
Cfp_t p (&C::f);

为确保p不会发生变化(例如p = &C::g;),我们可以这样做:

const Cfp_t p (&C::f);

现在,在这种情况下p的类型是什么?如何在不使用typedef的情况下完成p的最后定义? 我知道typeid (p).name ()无法区分最外层的const,因为它产生了

int (__thiscall C::*)(int const &)const

1 个答案:

答案 0 :(得分:7)

变量p的类型为int (C::*const) (const int&) const,您可以在没有typedef的情况下定义它:

int (C::*const p) (const int&) const = &C::f;

您的经验法则是:要创建您定义const的对象/类型,请将const关键字放在对象/类型名称旁边。所以你也可以这样做:

typedef int (C::*const Cfp_t) (const int&) const;
Cfp_t p(&C::f);
p = &C::f; // error: assignment to const variable