下面的程序运行的结果是:

2019-01-05 20:35发布

 

class S1{

 public static void main(String args[]){

 new S2();}

S1(){

     System.out.println(“S1”);

}

}

class S2 exend S1{

 S2(){

     System.out.println(“S2”);

}

}