码迷,mamicode.com
首页 > 编程语言 > 详细

C++有关指针练习

时间:2018-04-11 00:23:33      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:日常

#include<iostream>
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<<hour<<":"<<minute<<":"<<sec<<endl;
}

int main()
{Time t1(10,36,5);
int p = &t1.hour;
cout<<
p <<endl;
t1.get_time();
Time p2 = &t1;
p2-> get_time();
void(Time::
p3)();
p3 = &Time::get_time;
(t1.*p3)();
return 0;
}技术分享图片

C++有关指针练习

标签:日常

原文地址:http://blog.51cto.com/13615683/2096686

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!