2020计算机二级考试Java强化练习题及答案008
1.下面程序段的输出结果为( )。
package test;
public class ClassA
{
int x=20:
static int y=6;
public static void main(String args[])
{
ClassB b=new ClassB();
b.go(10);
System.out.println("x="+b.x);
}
}
class ClassB
{
int X;
void go(int y)
{
ClassA a=new ClassA();
x=a.Y ;
}
}
A.x=10
B.x=20
C.x=6
D.编译不通过
答案:C
2.下面程序段的输出结果为( )。
public class Test
{
int a,b;
Test()
{
a=100;
b=200:
}
Test(int X,int y)
{
a=x:
b=y;
}
public static void main(String args[])
{
Test Objl=new Test(12,45);
System.OUt.println("a="+Objl.a+"b="+Objl.
b);
Test Obj2=new Test();
System.out.println("fl="+Obj2.a+"b="+Obj2.
b);
}
}
A.a=100 b=200
a=12 b=45
B.a=12 b=45
a=100 b=200
C.a=12 b=200
a=100 b=45
D.a=100 b=45
a=12 b=200
答案:B
3.在匹配器(Matcher)类中,用于寻找下一个模式匹配串的方法是( )。
A.static boolean matches()
B.boolean matcher.find()
C.int matcher.start()
D.int matcher.end()
答案:A
4.下列说法正确的是( )。
A.共享数据的所有访问都必须作为临界区
B.用synchronized保护的共享数据可以是共有的
C.Java中对象加锁不具有可重人性
D.对象锁不能返回
答案:A
编辑推荐:
温馨提示:因考试政策、内容不断变化与调整,长理培训网站提供的以上信息仅供参考,如有异议,请考生以权威部门公布的内容为准! (责任编辑:长理培训)
点击加载更多评论>>