文章出處
文章列表
class Other{ public int i; } class Something{ public static oivd main(String[]args){ Other o = new Other(); new Something().addOne(o); } public void addOne(final Other o){ o.i++; o=new Other(); } }
文章列表
全站熱搜