package kehouzuoye;
class QWE
{
static int i=0;
public QWE()
{
i++;
System.out.println("你已经创建了"+i+"个对象");
}
}
public class san {
public static void main(String[] args) {
// TODO Auto-generated method stub
QWE a=new QWE();
QWE b=new QWE();
}
}