标题:关于const一问
取消只看楼主
miaomiao0403
Rank: 1
等 级:新手上路
帖 子:38
专家分:0
注 册:2006-8-22
 问题点数:0 回复次数:0 
关于const一问
有如下程序
#include <iostream.h>
int main()
{
    const int a=1;
    cout<<"a="<<a<<endl;
    int *p=(int *)&a;
    *p=2;
    cout<<"a="<<a<<endl;
    cout<<"*p="<<*p<<endl;
    cout<<&a<<endl;
    cout<<&(*p)<<endl;
    return 1;
}
运行结果a保持1不变,*p为2;但a和*p地址相同,不知道是因为什么。(在vc6下)
搜索更多相关主题的帖子: const int main cout include 
2008-01-25 18:29



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-198738-1-1.html




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

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