Why doesn#39;t a character increment in System.out.println()?(为什么 System.out.println() 中的字符不增加?)
问题描述
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() 中的字符不增加?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:为什么 System.out.println() 中的字符不增加?
基础教程推荐
- Java Swing计时器未清除 2022-01-01
- 如何在 Spring @Value 注解中正确指定默认值? 2022-01-01
- 多个组件的复杂布局 2022-01-01
- 从 python 访问 JVM 2022-01-01
- 验证是否调用了所有 getter 方法 2022-01-01
- 不推荐使用 Api 注释的描述 2022-01-01
- 在 Java 中创建日期的正确方法是什么? 2022-01-01
- 大摇大摆的枚举 2022-01-01
- 如何在 JFrame 中覆盖 windowsClosing 事件 2022-01-01
- Java 实例变量在两个语句中声明和初始化 2022-01-01
