码迷,mamicode.com
首页 > 其他好文 > 详细

调用类的三种方式

时间:2017-05-05 17:15:53      阅读:108      评论:0      收藏:0      [点我收藏+]

标签:arp   sharp   out   highlight   div   bsp   logs   blog   set   

1.T t;

Teacher teach ;//T  t = new T t();
teach.SetName("lizl");
teach.Say();

2 *t

Teacher *b=&teach ;
b->SetName("rename");
b->Say();

3.&t

Teacher &c=teach;
c.Say();
cout<< b <<endl;

  

 

调用类的三种方式

标签:arp   sharp   out   highlight   div   bsp   logs   blog   set   

原文地址:http://www.cnblogs.com/lizhenlin/p/6813664.html

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