为什么 System.out.println() 中的字符不增加?

Why doesn#39;t a character increment in System.out.println()?(为什么 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() 中的字符不增加?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

How to send data to COM PORT using JAVA?(如何使用 JAVA 向 COM PORT 发送数据?)
How to make a report page direction to change to quot;rtlquot;?(如何使报表页面方向更改为“rtl?)
Use cyrillic .properties file in eclipse project(在 Eclipse 项目中使用西里尔文 .properties 文件)
Is there any way to detect an RTL language in Java?(有没有办法在 Java 中检测 RTL 语言?)
How to load resource bundle messages from DB in Java?(如何在 Java 中从 DB 加载资源包消息?)
How do I change the default locale settings in Java to make them consistent?(如何更改 Java 中的默认语言环境设置以使其保持一致?)