但是当我尝试:
char _val = 'ab'; char _val = 'abc'; char _val = 'abcd';
它们编译得很好,当我打印_val时,它总是打印出最后一个字符.但是当我这样做的时候
char _val = 'abcde';
然后我收到编译错误:
Error 1 error C2015: too many characters in constant
所以我的问题是:
>为什么编译器总是在使用多个字符时使用最后一个字符?在这种情况下编译器机制是什么.
>当我输入5个字符时,为什么会出现太多字符错误. 2个字符比char可以处理的更多,为什么5?
我正在使用Visual Studio 2013.
谢谢.
解决方法
An ordinary character literal that contains more than one c-char is a
multicharacter literal. A multicharacter literal [..] is conditionally-supported,has typeint
,and
has an implementation-defined value.
Why does the compiler always takes the last character when multiple
characters are used? What is the compiler mechanism in this situation.
大多数编译器只是将字符值按顺序移动到一起:这样,最后一个字符占据最低有效字节,倒数第二个字符占据最低有效字符旁边的字节,依此类推.
即’abc’相当于’c'((int)’b’)<< 8)(((int)'a')<< 16)(Demo).
将此int转换回char将具有一个实现定义的值 – 可能只是从int modulo 256的值中获得.这只会给你最后一个字符.
Why did I get a too many characters error when I put 5 characters. 2
characters is more than what a char can handle so why 5?
因为在你的机器上,一个int可能大四个字节.如果以上确实是编译器排列多字符常量的方式,则不能将五个char值放入int中.