0

是否有任何 Java 注释将字段值设置为其名称,例如:

public interface Protocol {
    @Whatever String START; // Here @Whatever annotation would set START to "START" in any static string field.
}
4

1 回答 1

4

不,但你可以使用枚举类。

public enum Protocol  {
   START,
   END
}

然后你什么时候写:

System.out.println(Protocol.START);

你会得到“开始”

于 2013-05-06T14:04:04.223 回答