下列输出的结果是( ) class AA { wild Show( ) { System.out.println(“类AA”); }}class BB extends AA { void Show( ) { System.out.println(“类BB”); }}public class ex7 { public static void main(String args[ ]) { AA a=new AA( ); BB b=new BB( ); a.Show( ); b.Show( ); }}