long 类型的长度

long l1=1275264977820;
报错
Multiple markers at this line
 - The literal 1273593600000 of type int is out of 
  range
 - Type mismatch: cannot convert from int to 
  Long

long范围不是-2^63~2^63-1,也就是10进制也就是18位长度,我这里才13位长度

然后long l3=new Date().getTime();没报错,但l3就是我上面写的数字,这是怎么回事
============================================================================================
 
  
数字后面加个L。
long l1=1275264977820L; 
你那样写编译器会默认为INT类型。

你可能感兴趣的:(java)