[Java 教學範例拷貝]- 常數設定

[Java 教學範例拷貝]- 常數設定

[Java 教學範例拷貝]- 常數設定

 

剛才找資料時發現一個的Java 教學網站,趕快發揮(C/P)的長才將它備份來,有需要的同好,歡迎來(C/P)一下^^。

 

拷貝來源:
http://openhome.cc/Gossip/JavaGossip-V1/

http://openhome.cc/Gossip/JavaGossip-V1/ConstantSetup.htm

 

public interface OpConstants {
public static final int TURN_LEFT = 1;
public static final int TURN_RIGHT = 2;
public static final int SHOOT = 3;
}
public interface OpConstants {
int TURN_LEFT = 1;
int TURN_RIGHT = 2;
int SHOOT = 3;
}
public class OpConstants {
public static final int TURN_LEFT = 1;
public static final int TURN_RIGHT = 2;
public static final SHOOT = 3;
}

 

發表迴響

你的電子郵件位址並不會被公開。 必要欄位標記為 *