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

关于指针

时间:2020-02-17 19:35:18      阅读:43      评论:0      收藏:0      [点我收藏+]

标签:system   关于   声明   --   int   变量   输出   out   位置   

指针:指针实质上就是一个变量,其值为另一个变量的地址,即,内存位置的直接地址。就像其他变量或常量一样,您必须在使用指针存储其他变量地址之前,对其进行声明。

int main()
{
int a = 10;
int *b = &a;
int **c = &b;

cout << a << endl;
cout << "&a =" << &a << endl;
cout << "------------" << endl;

cout << "b=" << b<<endl;
cout << "*b " << *b << endl;
cout << "&b" << &b << endl;

cout << "--------" << endl;

cout << "c=" << c << endl;
cout << "*c=" << *c << endl;
cout << "**c=" << **c << endl;


system("pause"); //阻塞功能
return EXIT_SUCCESS;
}

输出为:

10
&a =002CFA28
------------
b=002CFA28
*b 10
&b002CFA1C
--------
c=002CFA1C
*c=002CFA28
**c=10

关于指针

标签:system   关于   声明   --   int   变量   输出   out   位置   

原文地址:https://www.cnblogs.com/qq376142178/p/12323153.html

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