天天看点

方法调用的两种情况

Student类的方法a( )调用Student类的方法b( ),直接调用

public void a( ) {
    b( );    //调用b( )
} 
           

Student类的方法a( )调用Teacher类的方法b( ),先创建类对象,然后使用“.”调用

public void a( ) {
    Teacher t = new Teacher( );
     t.b( ); //调用Teacher类的b()
}