免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2130 | 回复: 7
打印 上一主题 下一主题

关于C++的作用域问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2008-04-14 18:40 |只看该作者 |倒序浏览
1 #include <stdio.h>
&nbsp;&nbsp;2
&nbsp;&nbsp;3 union Ops{
&nbsp;&nbsp;4         struct {
&nbsp;&nbsp;5                 unsigned op:2;
&nbsp;&nbsp;6                 unsigned imm:30;
&nbsp;&nbsp;7         };
&nbsp;&nbsp;8         struct {
&nbsp;&nbsp;9                 unsigned op:2;
&nbsp;10                 unsigned op2:5;
&nbsp;11                 unsigned rs:25;
&nbsp;12         };
&nbsp;13 };
&nbsp;14
&nbsp;15 int main()
&nbsp;16 {
&nbsp;17         union Ops x;
&nbsp;18         return 0;
&nbsp;19 }


为什么g++编译不通过了呢?前面的op跟后面的不在同一个作用域吧...

[isolary@Lab test]$ gcc hello.c
[isolary@Lab test]$ g++ hello.c
hello.c:9: error: declaration of ‘unsigned int Ops::<anonymous struct>:: op’
hello.c:5: error: conflicts with previous declaration ‘unsigned int Ops::<anonymous struct>:: op’

论坛徽章:
0
2 [报告]
发表于 2008-04-14 19:04 |只看该作者
自己看错误提示吧

论坛徽章:
0
3 [报告]
发表于 2008-04-14 19:30 |只看该作者

回复 #2 tyc611 的帖子

看来你没有明白我的问题,那是用g++编译的时候它提示的错误,这一点不是与c++里面定义的作用域(两个花括弧之间)相矛盾吗?用gcc编译是没有问题的。
btw:我的gcc和g++版本都是4.1.1的。

论坛徽章:
0
4 [报告]
发表于 2008-04-14 19:42 |只看该作者
你怎么区分这两个 op,如果你不能区分的话,编译器怎么能区分它们?

论坛徽章:
0
5 [报告]
发表于 2008-04-14 19:52 |只看该作者

回复 #4 redspider 的帖子

但事实是GCC能够把两个op区分开

现在问题解决了,要想让g++和gcc都能编译通过,可以把相同的位段只命名一次,跳过相应位数即可。
只是不明白为什么g++会报错。

论坛徽章:
0
6 [报告]
发表于 2008-04-14 22:23 |只看该作者
C++ 不象 C 那样支持匿名 struct。你修改后编译能够通过是因为使用了编译器的扩展功能。

论坛徽章:
0
7 [报告]
发表于 2008-04-15 11:01 |只看该作者

回复 #6 whyglinux 的帖子

什么扩展功能?可以说得详细一点吗
这样不会有什么潜在的危险吧?

论坛徽章:
0
8 [报告]
发表于 2008-04-15 12:04 |只看该作者
原帖由 whyglinux 于 2008-4-14 22:23 发表
C++ 不象 C 那样支持匿名 struct。你修改后编译能够通过是因为使用了编译器的扩展功能。


学习了,以前还一直以为可以呢!!
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP