我必须存储此值。但是eclipse显示错误。
private final long cal_To_eV = 26131952998320000000L;
请告诉我如何储存。
答案 0 :(得分:6)
查看课程BigInteger
。
答案 1 :(得分:1)
您可以使用String
而不是long
。您也可以使用BigInteger或BigDouble。
private final BigInteger cal_To_eV = new BigInteger("26131952998320000000");