- /**
- * @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 */
- /*