Why is the sum of bytes integer?(为什么字节的总和是整数?)
问题描述
我有 tyo 字节变量
I have tyo byte variable
byte a = 3;
byte b = 4;
如果我把它们相加,sum的值是整数.
If I sum them, the value of sum is integer.
byte z = a+b //error, left side is byte, right side is integer
为什么 a+b 是 int?
Why a+b is int?
推荐答案
因为Java 语言规范 这么说
对操作数执行二进制数字提升(第 5.6.2 节).
Binary numeric promotion is performed on the operands (§5.6.2).
注意二进制数值提升执行值集转换(§5.1.13) 并且可以执行拆箱转换 (§5.1.8).
Note that binary numeric promotion performs value set conversion (§5.1.13) and may perform unboxing conversion (§5.1.8).
数字操作数上的加法表达式的类型是提升的其操作数的类型.
The type of an additive expression on numeric operands is the promoted type of its operands.
并且,关于数字推广,
加宽基元转换(第 5.1.2 节)用于转换或两个操作数均由以下规则指定:
Widening primitive conversion (§5.1.2) is applied to convert either or both operands as specified by the following rules:
- [...]
- 否则,两个操作数都转换为
int
类型.
所以 byte
值被提升为 int
值并相加.表达式的结果是提升的类型,因此是 int
.
So the byte
values are promoted to int
values and added up. The result of the expression is the promoted type, therefore an int
.
你可以简单地转换结果
byte z = (byte) (b + a);
但要小心溢出/下溢.
这篇关于为什么字节的总和是整数?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:为什么字节的总和是整数?


- Eclipse 的最佳 XML 编辑器 2022-01-01
- 如何指定 CORS 的响应标头? 2022-01-01
- java.lang.IllegalStateException:Bean 名称“类别"的 BindingResult 和普通目标对象都不能用作请求属性 2022-01-01
- 转换 ldap 日期 2022-01-01
- 获取数字的最后一位 2022-01-01
- GC_FOR_ALLOC 是否更“严重"?在调查内存使用情况时? 2022-01-01
- 在 Java 中,如何将 String 转换为 char 或将 char 转换 2022-01-01
- 如何使 JFrame 背景和 JPanel 透明且仅显示图像 2022-01-01
- 未找到/usr/local/lib 中的库 2022-01-01
- 将 Java Swing 桌面应用程序国际化的最佳实践是什么? 2022-01-01