| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 431 人关注过本帖
标题:[求助]请教访问隐藏名称的问题
只看楼主 加入收藏
叮叮当
Rank: 1
等 级:新手上路
帖 子:24
专家分:0
注 册:2007-1-2
收藏
 问题点数:0 回复次数:2 
[求助]请教访问隐藏名称的问题
大家好,我在看c++的书的时候,用::访问隐藏的名称,却总是编译出错,提示“has not been ceclared”,请问一下是哪里错了或该如何解决

#include <iostream>
using std::cout;
using std::endl;

int main() {
const int limit=10;
cout<<"outer limit is "<<limit<<endl;
{
const int limit=5;
cout<<"inner limit is "<<limit<<endl;
for(int i=1; i<=::limit; i++) //这一行不能通过编译
cout<<endl<<i<<"squared is "<<i*i;
}
cout<<endl<<endl<<"last limit is "<<limit<<endl;
system("pause");
return 0;
}
搜索更多相关主题的帖子: 名称 隐藏 访问 
2007-03-26 19:07
yuyunliuhen
Rank: 6Rank: 6
等 级:贵宾
威 望:20
帖 子:1435
专家分:0
注 册:2005-12-12
收藏
得分:0 
#include <iostream>
using std::cout;
using std::endl;
const int limit=5;
int main() {
const int limit=10; //全局变量
cout<<"outer limit is "<<limit<<endl;
{
// const int limit=5;
cout<<"inner limit is "<<limit<<endl;
for(int i=1; i<=::limit; i++) //可以通过作用域解析符::可以访问全局变量,
//而你将它定义的是个局部变量
cout<<endl<<i<<"squared is "<<i*i;
}
cout<<endl<<endl<<"last limit is "<<limit<<endl;
system("pause");
return 0;
}


Go confidently in the  directions of your dreams,live the life you have imagined!Just do it!
It is no use learning without thinking!
2007-03-26 19:25
叮叮当
Rank: 1
等 级:新手上路
帖 子:24
专家分:0
注 册:2007-1-2
收藏
得分:0 
原来::这个表达式只能访问全局变量,而不能访问比当前高一级的局部变量~是这样的吧
在main外面多加一个全局变量就通过编译了
谢谢您!
2007-03-26 20:07
快速回复:[求助]请教访问隐藏名称的问题
数据加载中...
 
   



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

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