首页 > 编程语言 > 详细

C++有关指针练习

时间:2018-04-10 23:54:35      阅读:301      评论: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
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!