(单选题, 1.0 分) 下列输出结果是( )。 class Foo{
public static void test(){
System.out.println("Foo");
}
}
Public class Moo extends Foo{
public static void test(){
System.out.println("Moo");
}
public static void main(String[] args){
Foo ff = new Moo();
ff.test();
}
}