常に、次のようなインターフェイスで定数を配置する場所を考えています。
public interface MyInterface {
...
public static final String MY_CONST = "const";
...
}
または次のようなクラスで:
public class MyClass implements MyInterface {
...
public static final String MY_CONST = "const";
...
}
定数を定義するのに適した場所はどこですか?