package com.jj;public class Dt extends Root {
    int i1=100;
Dt(){
     System.out.println(this+"++++"+i1);
    }
    
   S1 t3=new S1();
S2 t4=new S2();
Root t5=new Root();
void syas(){
System.out.println("************"+i1);
}
/**
 * @param args
 */
public static void main(String[] args) {
// TODO Auto-generated method stub
      Dt r1=new Dt();
}
}class S1{

 S1(){
 System.out.println(this);
 } }
class S2{

S2(){
 System.out.println(this);
 } }
class Root{
S1 t1=new S1();
S2 t2=new S2();
 Root(){
 System.out.println(this);
 syas();
 }
 void syas(){
System.out.println();
}
}