/****************************************************************************
* *
* @author Michael.Zhang
* QQ:406673768 *
*@version 1.0 *
*@date Jan 2, 2009
*beginTime: 10:27:36 PM
*endTime: *
****************************************************************************
*功能描述:
*
*
*
***************************************************************************
*/
package yeling.test;
public class Test {
public Test test;
public static int i = 0;
public Test() {
System.out.println("constructer " + i++);
test = new Test();
}
public static void main(String args []) {
Test test = new Test();
}
}