long類型其實我的系統給出Long.MAX_VALUE爲9223372036854775807錯誤在Java
但是,當我寫我這樣的程序,
package hex;
/**
*
* @author Ravi
*/
public class Main {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
// TODO code application logic here
long x = 9223372036854775807;
System.out.println(x);
}
}
我收到編譯時錯誤。任何人都可以解釋原因嗎?
'long x = 922337203685477580L' – jjnguy
@ user650521你不想爲你解答新的問題,對吧?如果其中一個答案有幫助 - 而且我認爲這是 - 爲什麼不點擊左側的概述✓複選標記? – glglgl