The car won't start because the battery has______-_.
A. run down
B. run over
C. run out
D. run off
第1题:
A.Tht=newTh();t.start();
B.newTh.start();
C.Threadt=newThread(newTh());t.start();
D.Tht=newTh();t.run();
第2题:
如果类实现了Runnable接口,类必须包含的方法是( )。
A.start()、stop()和run()
B.actionPerformed()
C.run()
D.start()、stop()
第3题:
以下哪个方法用来定义线程的执行体?
A.start()
B.init()
C.run() run()
D.main()
第4题:
A. Run();
B. Start();
C. Execute();
D. Run(Runnable r);
E. Start(Runnable r);
F. Execute(Thread t);
第5题:
当一个线程t调用start后,即Threadtest t=new Threadtest().start,下面哪种描述是正确的 ()
A.该t线程立即开始执行run方法
B.该t线程执行完了run方法
C.该t线程处于不可运行状态,没有执行run方法
D.该t线程处于可运行状态,还没有执行run方法
第6题:
设计一个交通工具类Vehicle,包含的数据成员有车轮个数wheels和车重weight。以及带有这两个参数的构造方法,具有Run方法,Run中方法输出running字样。小车类Car是它的子类,其中增加了数据成员车载人数passenger_load。Car类中有带参数的构造方法,重写Run方法:输出Car is running。并重写ToString()方法:显示car中信息(显示车轮数、车重、车载人数)。最后编写主方法,定义car的对象,并调用Run方法,以及显示car中信息。