免费注册 查看新帖 |

Chinaunix

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

C++中const修饰函数的问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2010-09-06 19:39 |只看该作者 |倒序浏览
  1. #include<iostream>
  2. using namespace std;

  3. int * const sum(int &,int &);
  4. int main()
  5. {
  6.         int i=1,j=2;
  7.         int * const ptr=sum(i,j);
  8. //              int const * ptr=sum(i,j);
  9.         cout<<*ptr<<endl;
  10.         return 0;
  11. }
  12. int * const sum(int &a,int &b)
  13. {
  14.         int c=a+b;
  15.         int *pi=&c;
  16.         return pi;
  17. }
复制代码
函数类型和返回的变量类型用const修饰的一致,可以正常通过,但是在VC6.0中注释中的也可正常运行,为什么const修饰的变量和函数不一致也可以?
如果是:
  1. #include<iostream>
  2. using namespace std;

  3. const int *  sum(int &,int &);
  4. int main()
  5. {
  6.         int i=1,j=2;
  7.         int * const ptr=sum(i,j);
  8. //        ptr++;
  9.         cout<<*ptr<<endl;
  10.         return 0;
  11. }
  12. const int *  sum(int &a,int &b)
  13. {
  14.         int c=a+b;
  15.         int *pi=&c;
  16.         return pi;
  17. }
复制代码
会出现编译错误,必须ptr和sum用const修饰的类型一致才可以。
对此很不解,请高手指点,非常感谢!

论坛徽章:
0
2 [报告]
发表于 2010-09-06 19:46 |只看该作者
突然想起LINUX之父说的一句话:C++尽是解决一些鸡毛蒜皮的事。

论坛徽章:
0
3 [报告]
发表于 2010-09-06 20:10 |只看该作者
建议去看下《c和指针》那本书吧,还是很容易理解的,不过这个程序本身就有问题,仔细想想吧。

论坛徽章:
0
4 [报告]
发表于 2010-09-07 10:26 |只看该作者
const int *  sum应该改成 int * const sum 吧
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP