1.原因現在還不知,試了幾個地方可以和不可以 ...
1.原因現在還不知,試了幾個地方可以和不可以
/** * @author feilong */ public class OverLoading { /**@param args put here can use */ public static void main(String[] args) { for(int i =0 ;i<5; i++) { Tree t = new Tree(i); t.info(); t.info("OverLoading method"); } new Tree(); } } /**here can't show */ /*