| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 623 人关注过本帖
标题:难以理解的指针变量
取消只看楼主 加入收藏
xiaoyu666
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2010-1-22
结帖率:0
收藏
已结贴  问题点数:20 回复次数:1 
难以理解的指针变量
#include "iostream.h"
int main()
{
    int i=3;
    int *iptr=&i;
    int **iptrptr=&iptr;
    cout<<"Address of Var i="<<iptr<<endl;
    cout<<"Data of Var i="<<*iptr<<endl;
    cout<<"Address of pointer iptr="<<iptrptr<<endl;
    cout<<"Address of Var i="<<*iptrptr<<endl;
    cout<<**iptrptr;
    *iptr=2+*iptr;
    cout<<"Data of Var i="<<*iptr<<endl;
    return 0;
}
运行结果:
Address of Var i=0x0012FF7C
Data of Var i=3
Address of pointer iptr=0x0012FF78
Address of Var i=0x0012FF7C
3Data of Var i=5
Press any key to continue
搜索更多相关主题的帖子: 指针 变量 
2010-01-22 18:52
xiaoyu666
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2010-1-22
收藏
得分:0 
iptr表示i的内存地址.,*iptr表示i,这个还好理解,
后面的iptrptr,*iptrptr,**iptrptr分别表示什么呢?怎么理解?
谢谢大家!
2010-01-22 18:54
快速回复:难以理解的指针变量
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.022396 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved