{
void test(int i){
System.out.println(“I am an int.”);
}
void test(String s){
System.out.println(“I am a string.”);}
public static void main(String args[])
{
Test t=new Test();
char ch=“y”;
t.test(ch); }
}
下列描述哪个正确?
A、程序将不会编译,因为空的方法不能被覆盖。 B、命令行t.test(ch);将不会编译,因为没有对应的方法。 C、代码将编译并输出以下结果: I am an String. D、代码将编译并输出以下结果: I am a int.
我的答案:D 错误
11
编译及运行以下代码,下列选项哪个是正确的
public class Sandys{
private int court;
public static void main(String argv[]){
Sandys s = new Sandys(99);
System.out.println(s.court);
}
Sandys(int ballcount){