题目详情
当前位置:首页 > 职业培训考试
题目详情:
发布时间:2024-02-19 19:07:35

[单项选择]

阅读下面程序
1 public class Try extends Thread{
2 public static void main(String args[]){
3 Try t=new Try( );
4 t.start( );
5 }
6
7 public void run(int j){
8 int i=0;
9 while(i<5){
10 System.out.println(“祝你成功!”);
11 i++;
12 }
13 }
14 }
该程序要求打印5行“祝你成功!”,必须改正程序中的某行代码,程序才能完成。选择正确的修改是()


A. 将第1行的extends Thread改为implements Runnable
B. 将第3行的new Try()改为new Thread()
C. 将第4行start()改为start(t)
D. 将第7行的public void run(int j)改为public void run()

更多"阅读下面程序 1 public class Try extends T"的相关试题:

[单项选择]阅读下面程序
1public class Try extends Thread 2public static void main(String args[])
3Tryt=new Try( );
4t.start( );
5
6
7publicvoidrun(intj)
8inti=0;
9while(i<5)
10System.out.println("祝你成功!");
11 i++;
12
13
14
该程序要求打印5行“祝你成功!”,必须改正程序中的某行代码,程序才能完成。选择正确的修改是( )。
A. 将第1行的extendsThread改为implementsRunnable
B. 将第3行的newTry()改为newThread()
C. 将第4行t.start()改为start(t)
D. 将第7行的publicvoidmn(intj)改为publicVoidmn()
[单项选择]阅读下面程序 1 public class Try extends Thread{ 2 public static void main(String args[]){ 3 Try t=new Try( ); 4 t.start( ); 5 } 6 7 public void run(int j){ 8 int i=0; 9 while(i<5){ 10 System.out.println(“祝你成功!”); 11 i++; 12 } 13 } 14 } 该程序要求打印5行“祝你成功!”,必须改正程序中的某行代码,程序才能完成。选择正确的修改是【 】
A. 将第1行的extendsThread改为implementsRunnable
B. 将第3行的newTry()改为newThread()
C. 将第4行t.start()改为start(t)
D. 将第7行的publicvoidrun(intj)改为publicvoidrun()
[单项选择]阅读下面程序
1 public class Try extends Thread
2 public static void main(String args[])
3 Try t=new Try( );
4 t.start( );
5
6
7 public void run(int j)
8 int i=0;
9 while(i<5)
10 System.out.println("祝你成功!");
11 i++:
12
13
14
该程序若能打印5行“祝你成功!”,必须改正程序中的某行代码,选择正确的修改是
A. 将第1行的extends Thread改为implements Runnable
B. 将第3行的new Try()改为new Thread()
C. 将第4行的t.start()改为start(t)
D. 将第7行的public void run(int j)改为public void run()
[单项选择]阅读下列程序:
class ThreadTest extends Thread
public static void main(String[]args)
Thread t=new Thread(this);
t.start( );

public void run( )
System.out.print("A thread test.");
对该程序而言,正确结论是 ( )
A. 该程序能够通过编译并打印输出“A thread test.”
B. 该程序能够通过编译,但运行时将不调用ThreadTest类中的run()方法,因此不产生任何输出
C. 该程序存在编译错误,因为在main()方法中不能使用this指针
D. 上述选项都不正确
[单项选择]

阅读和理解下面程序段:
class Manager extends Employee{
public Manager(String n,double s,int year,int month,int day) {
super(n,s,year,month,day);
bonus=O;
}
public double getSalary( ){
double baseSalary=super,gerSalary( );
return baseSalary+bonus;
}
public void setBonus(double b);
{
bonus=b;
}
private double bonus;
}
Manager是Employee的子类,其理由是()


A. Manager的适用范围较宽
B. extends关键字声明
C. Manager的域减小了
D. 雇员是一个经理
[填空题]

请写出下面程序的运行结果:
public class Test extends TT{
public static void main(String args[]){
Test t=new Test("Tom.");
}
public Test(String s){
super(s);
System.out.print("How are you");
}
public Test( ){
this("I am Jack.");
}
}
class TT{
public TT( ){
System.out.print("Hi!");
}
public TT(String s){
this( );
System.out.print("I am"+s);
}
}
结果:()。


[填空题]请写出下面程序的运行结果: public class Test extends TT{ public static void main(String args[])( Test t=new Test("Tom."); } public Test(SUing s){ super(s); System.out.print("How are you"); } public Test( ){ this("I am Jack."); } } class TT{ public TT( ) { System,out.print("Hi!"); } public TT(String s){ this( ); System.out.print("I am"+s); } } 结果: 【15】
[填空题]请写出下面程序的运行结果:
public class Test extends TT
public static void main(String args[])
Test t=new Test("Tom.");

public Test(String s)
super(S);
System.out.print("How are you");

public Test( )
this("I am Jack.");


class TT
public TT( )
System.out.print("Hi!");

public TT(String s)
this( );
System.out.print("I am" +s);


结果:______。
[填空题]请写出下面程序的运行结果: public class Test extends TT{ public static void main(String args[]){ Test t=new Test("Tom."); } public Test(String s){ super(s); System.out.print("How are you"); } public Test( ){ this("I am Jack."); } } class TT{ public TT( ){ System.out.print("Hi!"); } public TT(String s){ this( ); System.out.print("I am"+s); } } 结果【 】。
[填空题]请写出下面程序的运行结果: public class Test extends TT{ public static void main(String args[]){ Test t=new Test("Tom."); } public Test(String s){ super(S); System.out.print("How are you"); } public Test( ){ this("I am Jack."); } } class TT{ public TT( ){ System.out.print("Hi!"); } public TT(String s){ this( ); System.out.print("I am" +s); } } 结果:______。
[单项选择]对下列程序的叙述中,正确的是()
  1:public class X extends Thread implements Runnable
  2:publ主c void run( )
  3: System.out.println("this is run( )");
  4:
  5:public static void main(String args( ))
  6:Threadt二new Thread(new X( ));
  7:t.start( );
  8:
  9:
  


A. 第1行会产生编译错误
B. 第6行会产生编译错误
C. 第6行会产生运行错误
D. 程序正常运行
[单项选择]阅读下面程序 public class OperatorsAndExpressions{ void equalsMethodl( ){ String s1=new String("how are you"); String s2=new String("how are you"); System.out.println(s1==s2); } public static void main(String args[]){ OperatorsAndExpressionsOperAndExp=new OperatorsAndExpressions( ); //用于复合类型数据的“==”运算符 OperAndExp.equalsMethod1( ); } } 程序运行结果是【 】
A. =
B. TRUE
C. FALSE
D. equal
[单项选择]阅读下面程序 public class Increment { public static void main( String args[] ){ int c; c=5; System.out.println(C) ; System.out.println(c++); System.out.println(C) ; } } 输出结果是【 】
A. 5 6 6
B. 5 5 6
C. 6 7 7
D. 6 6 6
[单项选择]请阅读下面程序
public class ExampleStringBuffer
public static void main (String[]args)
StringBuffer sb=new StringBuffer("test");
System.out.printIn("buffer="+sb);
System, out.printIn("length="+sb.length( ));


程序运行结果中在“length=”后输出的值是______。
A. 10
B. 4
C. 20
D. 30

我来回答:

购买搜题卡查看答案
[会员特权] 开通VIP, 查看 全部题目答案
[会员特权] 享免全部广告特权
推荐91天
¥36.8
¥80元
31天
¥20.8
¥40元
365天
¥88.8
¥188元
请选择支付方式
  • 微信支付
  • 支付宝支付
点击支付即表示同意并接受了《购买须知》
立即支付 系统将自动为您注册账号
请使用微信扫码支付

订单号:

请不要关闭本页面,支付完成后请点击【支付完成】按钮
恭喜您,购买搜题卡成功
重要提示:请拍照或截图保存账号密码!
我要搜题网官网:https://www.woyaosouti.com
我已记住账号密码