有关对象指针的使用方法

//有关对象指针的使用方法
#include 
using namespace std;
class Time
{
public:
    Time(int,int,int);   //声明结构成员函数
    int hour;
    int minute;
    int sec;
    void get_time();        //声明公有成员函数
};
Time::Time(int h,int m,int s)    //定义结构成员函数
{
    hour=h;
    minute=m;
    sec=s;
}
void Time::get_time()           //定义公有成员函数
{
    cout<get_time();         //调用p2所指向对象(即t1)的get_time函数
    void(Time::*p3)();      //定义指向Time类公用成员函数的指针变量p3
    p3=&Time::get_time;     //使p3指向Time类公用成员函数get_time
    (t1.*p3)();             //调用对象t1中p3所指的成员函数(即t1.get_time())
}


你可能感兴趣的:(有关对象指针的使用方法)