如何在我的类中定义一个返回对象的常量?我正在寻找的是BigInteger.ZERO
答案 0 :(得分:0)
这是BigInteger.ZERO
的定义方式:
public static final BigInteger ZERO = new BigInteger(new int[0], 0);
答案 1 :(得分:0)
public class SomeClass {
public static final type CONST_NAME = new SomeObject();
...
}
然后你可以SomeClass.CONST_NAME