如何在Java中定义常量创建者方法

时间:2015-10-21 17:27:46

标签: java

如何在我的类中定义一个返回对象的常量?我正在寻找的是BigInteger.ZERO

2 个答案:

答案 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