小编典典

Java-错误:long n = 8751475143;

java

此数字属于较大范围,所以为什么会出现错误:

Exception in thread "main" java.lang.Error: Unresolved compilation problem: 
    The literal 8751475143 of type int is out of range

阅读 253

收藏
2020-11-30

共1个答案

小编典典

做了

long n = 8751475143L;

L 将使它长字面量

默认情况下 int

如果以ASCII字母L或l(ell)为后缀,则整数文字的类型为long。否则为int类型(第4.2.1节)。后缀L是首选,因为字母l(ell)通常很难与数字1(一个)区分开。[..]

2020-11-30