※ 引述《lueichun (no anonymous)》之铭言:
: 我在一个Java档的interface里写上:
: package sa;
: public interface Book
: {
: double price=0;
: }
http://openhome.cc/Gossip/Java/InterfaceSyntax.html
在interface中,也只能定义public static final的列举常数,为了方便,也可以如下撰
写:
public interface Action {
int STOP = 0;
int RIGHT = 1;
int LEFT = 2;
int UP = 3;
int DOWN = 4;
}
编译器会帮你展开为public static final,所以在接口中列举常数,一定要使用=指定值
,否则就会编译错误。