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

类指针引用

时间:2016-07-12 19:07:23      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:

类的对象指针和二级指针

 

 1 #include <iostream>
 2 
 3 class myclass
 4 {
 5 public:
 6     int x;
 7     int y;
 8 public:
 9     myclass(int, int);//构造函数
10     void printxy();
11 };
12 
13 myclass::myclass(int a, int b) :x(a), y(b)//构造函数
14 {
15 
16 }
17 
18 void myclass::printxy()
19 {
20     std::cout << x << " " << y << std::endl;
21 }
22 
23 void main()
24 {
25     myclass *p(new myclass(10, 9));//一级指针
26     
27     p->printxy();
28 
29     myclass class1(20, 1);
30 
31     myclass **pp = &p;//二级指针
32 
33     (*pp)->printxy();//一级指针
34     (**pp).printxy();//0级指针
35     
36     system("pause");
37 }

 

 

123

类指针引用

标签:

原文地址:http://www.cnblogs.com/denggelin/p/5664505.html

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