给出一个班级
class C {
public:
int f (const int& n) const { return 2*n; }
int g (const int& n) const { return 3*n; }
};
我们可以像这样定义一个函数指针p
到C::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
答案 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