问题描述
char char1 = 'a';
System.out.println(char1); //prints char 1
System.out.println(char1+1); //prints char 1
System.out.println(char1++); //prints char 1
System.out.println(char1+=1); //prints incremented char1
char1 += 1;
System.out.println(char1); //prints incremented char1
在上面,为什么 (char1+1) 或 (char++) 不打印递增的字符而其他两个打印?
In the above, why doesn't (char1+1) or (char++) print the incremented character but theother two do?
推荐答案
首先,我假设因为您说 System.out.println 中的增量有效,所以您确实指定了:
First, I'm assuming that because you say the increment in System.out.println works, that you have really specified:
char char1 = 'a';
编辑
针对问题的变化 (char1+1; => char1 += 1;) 我看到了问题.输出是
In response to the change of the question (char1+1; => char1 += 1;) I see the issue.
The output is
a
98
b
98 出现是因为 char a 被提升为 int(二进制数字提升)以加 1.所以 a 变为 97('a' 的 ASCII 值)和 98 个结果.
The 98 shows up because the char a was promoted to an int (binary numeric promotion) to add 1. So a becomes 97 (the ASCII value for 'a') and 98 results.
但是,char1 += 1; 或 char1++ 不执行二进制数字提升,因此可以按预期工作.
However, char1 += 1; or char1++ doesn't perform binary numeric promotion, so it works as expected.
引用 JLS,第 5.6.2 节,二进制数字提升":
加宽基元转换(第 5.1.2 节)用于转换或两个操作数均由以下规则指定:
Widening primitive conversion (§5.1.2) is applied to convert either or both operands as specified by the following rules:
如果任一操作数是 double 类型,则另一个将转换为 double.
If either operand is of type double, the other is converted to double.
否则,如果任一操作数为浮点类型,则转换另一个浮动.
Otherwise, if either operand is of type float, the other is converted to float.
否则,如果任一操作数是 long 类型,则转换另一个长.
Otherwise, if either operand is of type long, the other is converted to long.
否则,两个操作数都转换为 int 类型.
(强调我的)
这篇关于为什么 System.out.println() 中的字符不增加?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!


大气响应式网络建站服务公司织梦模板
高端大气html5设计公司网站源码
织梦dede网页模板下载素材销售下载站平台(带会员中心带筛选)
财税代理公司注册代理记账网站织梦模板(带手机端)
成人高考自考在职研究生教育机构网站源码(带手机端)
高端HTML5响应式企业集团通用类网站织梦模板(自适应手机端)