- 论坛徽章:
- 0
|
- #include<iostream>
- using namespace std;
- int * const sum(int &,int &);
- int main()
- {
- int i=1,j=2;
- int * const ptr=sum(i,j);
- // int const * ptr=sum(i,j);
- cout<<*ptr<<endl;
- return 0;
- }
- int * const sum(int &a,int &b)
- {
- int c=a+b;
- int *pi=&c;
- return pi;
- }
复制代码 函数类型和返回的变量类型用const修饰的一致,可以正常通过,但是在VC6.0中注释中的也可正常运行,为什么const修饰的变量和函数不一致也可以?
如果是:- #include<iostream>
- using namespace std;
- const int * sum(int &,int &);
- int main()
- {
- int i=1,j=2;
- int * const ptr=sum(i,j);
- // ptr++;
- cout<<*ptr<<endl;
- return 0;
- }
- const int * sum(int &a,int &b)
- {
- int c=a+b;
- int *pi=&c;
- return pi;
- }
复制代码 会出现编译错误,必须ptr和sum用const修饰的类型一致才可以。
对此很不解,请高手指点,非常感谢! |
|