题目内容 (请给出正确答案)
[主观题]

沥青碎石属于骨架-空隙结构,具有较好的高温稳定性,但耐久性较差。()A.正确B.错误

沥青碎石属于骨架-空隙结构,具有较好的高温稳定性,但耐久性较差。()

A.正确

B.错误

查看答案
如搜索结果不匹配,请 联系老师 获取答案
您可能会需要:
您的账号:,可能会需要:
您的账号:
发送账号密码至手机
发送
更多“沥青碎石属于骨架-空隙结构,具有较好的高温稳定性,但耐久性较…”相关的问题

第1题

阅读下面程序1 public class Try extends Thread {2 public static void main(String args[]) {3

阅读下面程序 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()

点击查看答案

第2题

(28 )阅读下面程序1 public class Try extends Thread{2 public static void main(String args[

(28 )阅读下面程序

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()

点击查看答案

第3题

阅读下面程序1public class Try extends Thread{2public static void main(String args[]){3Try

阅读下面程序 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()

点击查看答案

第4题

阅读下面程序1public class Try extends Thread{2public static void main(String args[]){3Try

阅读下面程序 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()

点击查看答案

第5题

阅读下面程序 1 public class Try extends Thread{ 2 public static void main(String args[]

阅读下面程序 1 public class Try extends Thread{ 2 public static void main(String args[]){ 3Try t=new Try; 4 t.start; 5} 6 7 public void run(intj){ 8 inti=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行的public void run(intj)改为public void run

点击查看答案

第6题

3阅读下面程序1public class Try extends Thread{ 2public static void main(String args[ ]){ 3

3阅读下面程序 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.pfintln("祝你成功"); 11 i++; 12 } 13 } 14 } 该程序要求打印5行“祝你成功”必须改正程序中的某行代码,程序才能完成。选择正确的修改是()。

A.将第1行的extends Thread改为implements Runnable

B.将第3行的new Try()改为new Thread()

C.将第4行t.sta.rt()改为start(t)

D.将第7行的publ void run(int j)改为public void run()

点击查看答案

第7题

下列程序创建了一个线程并运行,请在下划线处填入正确代码。 public class Try extends Thread{

下列程序创建了一个线程并运行,请在下划线处填入正确代码。

public class Try extends Thread{

public static void main(String args[]){

Threadt=new Try();

【 】;

}

public void run(){

System.out.println(“Try!”);

}

}

点击查看答案

第8题

public class ThreadTest extends Thread{ private int count=5; public void run(){ while(count>=1){ try{ Thread.sleep(1000); }catch(Exception e){ e.printStackTrace(); } System.out.print(" "+count--);
点击查看答案

第9题

阅读下面程序public class Test2 ______ { public static void main(String[] args) { Thread t

阅读下面程序 public class Test2 ______ { public static void main(String[] args) { Thread t=new Test2(); t.start(); } public void run() { System.out.println("How are you."); } } 程序中下画线处应填入的正确选项是

A.implements Thread

B.extends Runnable

C.implements Runnable

D.extends Thread

点击查看答案

第10题

阅读下面程序public class Test2______ {public static void main(String[] args){Thread t=new

阅读下面程序 public class Test2______ { public static void main(String[] args){ Thread t=new Test2(); t. start(); } public void run(){ System. out. priatln("How are you. "); } } 在程序下画线处填入的正确的选项是

A.implements Thread

B.extends Runnable

C.implements Runnable

D.extends Thread

点击查看答案
热门考试 全部 >
相关试卷 全部 >
账号:
你好,尊敬的上学吧用户
发送账号至手机
密码将被重置
获取验证码
发送
温馨提示
该问题答案仅针对搜题卡用户开放,请点击购买搜题卡。
马上购买搜题卡
我已购买搜题卡, 登录账号 继续查看答案
重置密码
确认修改
谢谢您的反馈

您认为本题答案有误,我们将认真、仔细核查,
如果您知道正确答案,欢迎您来纠错

警告:系统检测到您的账号存在安全风险

为了保护您的账号安全,请在“上学吧”公众号进行验证,点击“官网服务”-“账号验证”后输入验证码“”完成验证,验证成功后方可继续查看答案!

微信搜一搜
上学吧
点击打开微信
警告:系统检测到您的账号存在安全风险
抱歉,您的账号因涉嫌违反上学吧购买须知被冻结。您可在“上学吧”微信公众号中的“官网服务”-“账号解封申请”申请解封,或联系客服
微信搜一搜
上学吧
点击打开微信