建議一個package中需要的常量集中到一個XyzConstants之類的interface裡聲明
public interface SomeConstants {
public int PORT =
public String IP =
public boolean test = true;
}
就可以用到常量的類implements這個接口
更formal的做法是寫一個類維護所有的常量
From:http://tw.wingwit.com/Article/program/Java/Javascript/201311/25264.html