题目来牛客网
1.类中的数据域使用private修饰为私有变量,所以任何方法均不能访问它。
A.正确
B.错误
答案:B,本类可以使用,反射也可以。
2.在类Tester中定义方法如下
public double max(int x, int y){//省略 }
则在该类中定义如下哪个方法头是对上述方法的重载(Overload)?
A public int max(int a, int b) {}
B.public int max(double a, double b) {}
C.public double max(int x, int y) {}
D.private double max(int a, int b) {}
3.4.下面程序的输出是什么?
public
class
TestDemo
{
public
static
String output =
""
;
public
static
void
foo(inti)
{
try
{
if
(i ==
1
)
{
throw
new
Exception();
}
}
catch
(Exception e)
{
output +=
"2"
;
return
;
}
finally
{
output +=
"3"
;
}
output +=
"4"
;
}
public
static
void
main(String[] args)
{
foo(
0
);
foo(
1
);
System.out.println(output);
}
}
A.342
B.3423
C.34234
D.323
4.
给出以下代码,请给出结果.
A. null null 42
B.null 42 42
C.0042
D.042 42
E.An exception is thrown at runtime
F.Compilation