此数字属于较大范围,所以为什么会出现错误:
Exception in thread "main" java.lang.Error: Unresolved compilation problem: The literal 8751475143 of type int is out of range
做了
long n = 8751475143L;
L 将使它长字面量
L
默认情况下 int
int
如果以ASCII字母L或l(ell)为后缀,则整数文字的类型为long。否则为int类型(第4.2.1节)。后缀L是首选,因为字母l(ell)通常很难与数字1(一个)区分开。[..]