代码片段如下:
public static void main (String[]arg)
{
char ca = 'a' ;
char cb = 'b' ;
System.out.println (ca + cb) ;
}
输出是:
195
为什么会这样?我认为 'a' + 'b' 将是 "ab" 、 "12" 或 3代码>.
Why is this the case? I would think that 'a' + 'b' would be either "ab" , "12" , or 3.
这是怎么回事?
+ 的两个 char 是算术加法,而不是字符串连接.你必须做类似 ""+ ca + cb,或者使用String.valueOf和Character.toString方法保证+ 是一个String,用于操作符进行字符串连接.
+ of two char is arithmetic addition, not string concatenation. You have to do something like "" + ca + cb, or use String.valueOf and Character.toString methods to ensure that at least one of the operands of + is a String for the operator to be string concatenation.
如果 + 运算符的任一操作数的类型为 String,则该操作为字符串连接.
If the type of either operand of a
+operator isString, then the operation is string concatenation.
否则,+ 运算符的每个操作数的类型必须是可转换为原始数值类型的类型,否则会出现编译时错误.
Otherwise, the type of each of the operands of the + operator must be a type that is convertible to a primitive numeric type, or a compile-time error occurs.
至于为什么你得到 195,那是因为在 ASCII 中,'a' = 97 和 'b' = 98,以及 97 + 98= 195.
As to why you're getting 195, it's because in ASCII, 'a' = 97 and 'b' = 98, and 97 + 98 = 195.
这执行基本的 int 和 char 转换.
This performs basic int and char casting.
char ch = 'a';
int i = (int) ch;
System.out.println(i); // prints "97"
ch = (char) 99;
System.out.println(ch); // prints "c"
这忽略了字符编码方案的问题(初学者不应该担心......但是!).
This ignores the issue of character encoding schemes (which a beginner should not worry about... yet!).
作为注释,Josh Bloch 指出,很遗憾 + 对字符串连接和整数加法都进行了重载(对于字符串连接重载 + 运算符可能是一个错误." -- Java Puzzlers,谜题 11:最后的笑声).通过使用不同的字符串连接标记可以轻松避免很多此类混淆.
As a note, Josh Bloch noted that it is rather unfortunate that + is overloaded for both string concatenation and integer addition ("It may have been a mistake to overload the + operator for string concatenation." -- Java Puzzlers, Puzzle 11: The Last Laugh). A lot of this kinds of confusion could've been easily avoided by having a different token for string concatenation.
这篇关于为什么一个 char + 另一个 char = 一个奇怪的数字的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!
“Char 不能被取消引用"错误quot;Char cannot be dereferencedquot; error(“Char 不能被取消引用错误)
Java Switch 语句 - 是“或"/“和"可能的?Java Switch Statement - Is quot;orquot;/quot;andquot; possible?(Java Switch 语句 - 是“或/“和可能的?)
Java替换字符串特定位置的字符?Java Replace Character At Specific Position Of String?(Java替换字符串特定位置的字符?)
具有 int 和 char 操作数的三元表达式的类型是什么What is the type of a ternary expression with int and char operands?(具有 int 和 char 操作数的三元表达式的类型是什么?)
读取文本文件并存储出现的每个字符Read a text file and store every single character occurrence(读取文本文件并存储出现的每个字符)
为什么我需要在 byte 和 short 上显式转换 char 原语Why do I need to explicitly cast char primitives on byte and short?(为什么我需要在 byte 和 short 上显式转换 char 原语?)