<i id='9Ibyl'><tr id='9Ibyl'><dt id='9Ibyl'><q id='9Ibyl'><span id='9Ibyl'><b id='9Ibyl'><form id='9Ibyl'><ins id='9Ibyl'></ins><ul id='9Ibyl'></ul><sub id='9Ibyl'></sub></form><legend id='9Ibyl'></legend><bdo id='9Ibyl'><pre id='9Ibyl'><center id='9Ibyl'></center></pre></bdo></b><th id='9Ibyl'></th></span></q></dt></tr></i><div id='9Ibyl'><tfoot id='9Ibyl'></tfoot><dl id='9Ibyl'><fieldset id='9Ibyl'></fieldset></dl></div>
      <bdo id='9Ibyl'></bdo><ul id='9Ibyl'></ul>

    <tfoot id='9Ibyl'></tfoot>

    <small id='9Ibyl'></small><noframes id='9Ibyl'>

  • <legend id='9Ibyl'><style id='9Ibyl'><dir id='9Ibyl'><q id='9Ibyl'></q></dir></style></legend>

        为什么我不能添加两个字节并获得一个 int,而我

        时间:2023-10-01

          1. <legend id='56IpO'><style id='56IpO'><dir id='56IpO'><q id='56IpO'></q></dir></style></legend>

            <small id='56IpO'></small><noframes id='56IpO'>

                <bdo id='56IpO'></bdo><ul id='56IpO'></ul>

              • <tfoot id='56IpO'></tfoot>
                  <tbody id='56IpO'></tbody>
                  <i id='56IpO'><tr id='56IpO'><dt id='56IpO'><q id='56IpO'><span id='56IpO'><b id='56IpO'><form id='56IpO'><ins id='56IpO'></ins><ul id='56IpO'></ul><sub id='56IpO'></sub></form><legend id='56IpO'></legend><bdo id='56IpO'><pre id='56IpO'><center id='56IpO'></center></pre></bdo></b><th id='56IpO'></th></span></q></dt></tr></i><div id='56IpO'><tfoot id='56IpO'></tfoot><dl id='56IpO'><fieldset id='56IpO'></fieldset></dl></div>

                • 本文介绍了为什么我不能添加两个字节并获得一个 int,而我可以添加两个最终字节获得一个字节?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  public class Java{
                      public static void main(String[] args){
                          final byte x = 1;
                          final byte y = 2;
                          byte z = x + y;//ok
                          System.out.println(z);
                  
                          byte a = 1;
                          byte b = 2;
                          byte c = a + b; //Compiler error
                          System.out.println(c);
                      }
                  }
                  

                  如果涉及任何 int 大小或更小的表达式的结果始终是 int,即使两个字节的总和适合一个字节.

                  If the result of an expression involving anything int-sized or smaller is always an int even if the sum of two bytes fit in a byte.

                  为什么当我们添加两个适合一个字节的最终字节时会发生这种情况?没有编译器错误.

                  推荐答案

                  来自JLS 5.2 赋值转换

                  此外,如果表达式是 byte、short、char 或 int 类型的常量表达式(第 15.28 节):- 如果类型为变量是 byte、short 或 char,以及常量的值表达式可以用变量的类型来表示.

                  In addition, if the expression is a constant expression (§15.28) of type byte, short, char, or int: - A narrowing primitive conversion may be used if the type of the variable is byte, short, or char, and the value of the constant expression is representable in the type of the variable.

                  简而言之,表达式的值(在编译时是已知的,因为它是一个常量表达式)可以用字节变量的类型来表示.

                  In short the value of the expression (which is known at compile time, because it is a constant expression) is representable in the type of the variable that is byte.

                  考虑你的表达方式

                   final byte x = 1;
                   final byte y = 2;
                   byte z = x + y;//This is constant expression and value is known at compile time
                  

                  因此,当求和适合字节时,它不会引发编译错误.

                  So as summation fits into byte it does not raise an compilation error.

                  如果你这样做了

                  final byte x = 100;
                  final byte y = 100;
                  byte z = x + y;// Compilation error it no longer fits in byte
                  

                  这篇关于为什么我不能添加两个字节并获得一个 int,而我可以添加两个最终字节获得一个字节?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:在Java中将布尔值转换为int 下一篇:在 Java 中声明一个 unsigned int

                  相关文章

                  最新文章

                    <small id='OW0BS'></small><noframes id='OW0BS'>

                    • <bdo id='OW0BS'></bdo><ul id='OW0BS'></ul>
                    <legend id='OW0BS'><style id='OW0BS'><dir id='OW0BS'><q id='OW0BS'></q></dir></style></legend>
                      <i id='OW0BS'><tr id='OW0BS'><dt id='OW0BS'><q id='OW0BS'><span id='OW0BS'><b id='OW0BS'><form id='OW0BS'><ins id='OW0BS'></ins><ul id='OW0BS'></ul><sub id='OW0BS'></sub></form><legend id='OW0BS'></legend><bdo id='OW0BS'><pre id='OW0BS'><center id='OW0BS'></center></pre></bdo></b><th id='OW0BS'></th></span></q></dt></tr></i><div id='OW0BS'><tfoot id='OW0BS'></tfoot><dl id='OW0BS'><fieldset id='OW0BS'></fieldset></dl></div>
                      <tfoot id='OW0BS'></tfoot>