问题描述
如何在变数const的资格,C和C ++有什么不同?
从:Does " const的"仅仅意味着只读或更多的东西? (在C / C ++)
是什么促使这个问题是这样的回答:http://stackoverflow.com/questions/4024318#4024417他指出常量只是手段只读C.我以为这就是全部常量的意思,不管它是否是C或C ++。他是什么意思?
解决方案
如何在变数const的资格,C和C ++有什么不同?
从:Does " const的"仅仅意味着只读或更多的东西? (在C / C ++)
是什么促使这个问题是这样的回答:http://stackoverflow.com/questions/4024318#4024417他指出常量只是手段只读C.我以为这就是全部常量的意思,不管它是否是C或C ++。他是什么意思?
用C常量
不能用来建恒恩pressions
例如:
的#include<&stdio.h中GT;
诠释的main()
{
INT I = 2;
const int的C = 2;
开关(ⅰ)
{
案例C:的printf(你好);
打破; 默认:输出(世界);
}
}
在C不工作,因为case标签不会减少整型常量。
How does the const qualification on variables differ in C and C++?
from: Does "const" just mean read-only or something more? (in C/C++)
"What prompted this question was this answer: http://stackoverflow.com/questions/4024318#4024417 where he states const "just" means read-only in C. I thought that's all const meant, regardless of whether it was C or C++. What does he mean?"
const
in C cannot be used to build constant expressions.
For example :
#include <stdio.h>
int main()
{
int i = 2;
const int C = 2;
switch(i)
{
case C : printf("Hello") ;
break;
default : printf("World");
}
}
doesn't work in C because case label does not reduce to an integer constant.
这篇关于如何&QUOT; const的&QUOT;在C和C ++有什么不同?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!