Suppose you need to define a class which all it does is hold constants.
public static final String SOME_CONST = "SOME_VALUE";
What is the preferred way of doing this?
- Interface
- Abstract Class
- Final Class
我应该使用什么东西?
Clarifications to some answers:
Enums——我不想使用 en,但我没有列举任何东西,只是收集一些不以任何方式相互有关的不变。
<>Interface-Im将不将任何类别列为实施接口的一类。 只想利用接口来打上像样的恒星:ISomeInterface。 SOME_CONST
。