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

<tfoot id='a9R0N'></tfoot>
        <i id='a9R0N'><tr id='a9R0N'><dt id='a9R0N'><q id='a9R0N'><span id='a9R0N'><b id='a9R0N'><form id='a9R0N'><ins id='a9R0N'></ins><ul id='a9R0N'></ul><sub id='a9R0N'></sub></form><legend id='a9R0N'></legend><bdo id='a9R0N'><pre id='a9R0N'><center id='a9R0N'></center></pre></bdo></b><th id='a9R0N'></th></span></q></dt></tr></i><div id='a9R0N'><tfoot id='a9R0N'></tfoot><dl id='a9R0N'><fieldset id='a9R0N'></fieldset></dl></div>
      1. <legend id='a9R0N'><style id='a9R0N'><dir id='a9R0N'><q id='a9R0N'></q></dir></style></legend>
          <bdo id='a9R0N'></bdo><ul id='a9R0N'></ul>
      2. int 类型的字面量 xyz 超出范围

        时间:2023-10-01

            <tbody id='TNQoN'></tbody>
          <tfoot id='TNQoN'></tfoot>

            <bdo id='TNQoN'></bdo><ul id='TNQoN'></ul>

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

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

                  <legend id='TNQoN'><style id='TNQoN'><dir id='TNQoN'><q id='TNQoN'></q></dir></style></legend>
                  本文介绍了int 类型的字面量 xyz 超出范围的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我目前正在使用 Java 中的数据类型,如果我理解正确,类型 long 接受介于 -9,223,372,036,854,775,808 到 +9,223,372,036,854,775,807 之间的值.现在正如您在下面看到的,我创建了一个名为 testLonglong 变量,尽管当我插入 9223372036854775807 作为值时,我收到一条错误消息:

                  I am working with data types at the moment in Java, and if I have understood correctly the type long accepts a value between the ranges of -9,223,372,036,854,775,808 to +9,223,372,036,854,775,807. Now as you can see below, I have create a long variable called testLong, although when I insert 9223372036854775807 as the value, I get an error stating:

                  int 类型的字面量 9223372036854775807 超出范围.

                  The literal 9223372036854775807 of the type int is out of range.

                  我不知道为什么它把 long 数据类型称为 int.

                  I don't know why it is referring to the long data type as an int.

                  有人有什么想法吗?

                  代码:

                  char testChar = 01;
                  byte testByte = -128;
                  int testInt = -2147483648;
                  short testShort = -32768;
                  long testLong = 9223372036854775807;
                  float testFoat;
                  double testDouble = 4.940656458412;
                  boolean testBool = true;
                  

                  推荐答案

                  在末尾加一个大写的L:

                  long value = 9223372036854775807L;
                  

                  否则,编译器将尝试将文字解析为 int,因此会出现错误消息

                  Otherwise, the compiler will try to parse the literal as an int, hence the error message

                  这篇关于int 类型的字面量 xyz 超出范围的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:value &amp; 是什么意思?0xff 在 Java 中做什么? 下一篇:为什么Java除以0.0时不抛出异常?

                  相关文章

                  最新文章

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

                • <small id='rZL0q'></small><noframes id='rZL0q'>

                      <tfoot id='rZL0q'></tfoot>
                    1. <legend id='rZL0q'><style id='rZL0q'><dir id='rZL0q'><q id='rZL0q'></q></dir></style></legend>
                        <bdo id='rZL0q'></bdo><ul id='rZL0q'></ul>