class A
{
public:
void set(int x,int y)
{
this->x=x;
this->y=y;
}
private:
int x;
int y;
};
void(A::*p)(int x,int y);
int main
(
A a;
p=&A::set;
//注意类的函数指针调用方式
(a.*p).(1,2);
)
类的指针函数调用方式
最新推荐文章于 2023-12-08 19:26:40 发布
class A
{
public:
void set(int x,int y)
{
this->x=x;
this->y=y;
}
private:
int x;
int y;
};
void(A::*p)(int x,int y);
int main
(
A a;
p=&A::set;
//注意类的函数指针调用方式
(a.*p).(1,2);
)