看板
[ java ]
討論串[問題] interface裡的attribute const?
共 10 篇文章
內容預覽:
問題點在於,你了解什麼叫作「建立參考」嗎?. 是意指建立一個新的實體 istance. new Something();. //where Something is not an interface nor an abstract class. 還是指某個 member field 的定義. Oth
(還有138個字)
內容預覽:
interface Move. {. public int walk=1;. public int run=2;. public int jump=3;. public void moving(int move);. }. interface Hole. {. public void holing(
(還有221個字)