// 定義方法內(nèi)部類 class MInner { int score = 83; public int getScore() { return score + 10; } }? ? ? ?? // 創(chuàng)建方法內(nèi)部類的對象? ? ? ? MInner mi = new MInner();? ? ? ??? ? ? ? // 調(diào)用內(nèi)部類的方法 int newScore = mi.getScore();? ? ? ??
添加回答
舉報
0/150
提交
取消