看板
[ java ]
討論串[問題]有關private屬性
共 8 篇文章
內容預覽:
class test{ <== private start at here and born. private int n;. public void fooMethod(){. // in private realm XD. private int m; <-- born. }. // m out
(還有63個字)
內容預覽:
class test{. private int n = 7;. public static void main(String [] args). {. test a = new test();. System.out.println(a.n);. }. }. 我是JAVA新手.想要請教各位. 為什
(還有1個字)