首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
清阅读下面程序,说明该程序创建线程使用的方法是( )。 publicclassThreadTest { publicstaticvoidmain(Stringargs[]) { Threadt1=newThread(ne
清阅读下面程序,说明该程序创建线程使用的方法是( )。 publicclassThreadTest { publicstaticvoidmain(Stringargs[]) { Threadt1=newThread(ne
admin
2012-12-13
59
问题
清阅读下面程序,说明该程序创建线程使用的方法是( )。 publicclassThreadTest { publicstaticvoidmain(Stringargs[]) { Threadt1=newThread(newHolloWorld()); Threadt2=newThread(newHolloWorld()); t1.start(); t2.start(); } } classHolloWorldimplementsRunnable { inti; publicvoidrun() { while(true) { System.out.println("HolloWorld"+i++); if(i==5)break; } } }
选项
A、继承Thread类
B、实现Runnable接口
C、t1.start()
D、t2.stan()
答案
B
解析
本题考查线程的创建。在Java中,创建线程有两种方法:①通过实现Runnable接口创建线程。Rurmable接口中只定义了一个rail()方法作为线程体。②通过继承Thread类创建线程,Thread类本身实现了Runnable接口。创建的新的线程不会自动运行,必须调用start()方法才能运行;本题中HolloWorld类实现了Runnable接口。
转载请注明原文地址:https://kaotiyun.com/show/8G2p777K
本试题收录于:
二级Java题库NCRE全国计算机二级分类
0
二级Java
NCRE全国计算机二级
相关试题推荐
以下程序的输出结果是()。foriin”Nation”:forkinrange(2):ifi==’n’:breakprint(i,end=””)
以下程序的输出结果是()。11=[’aa’,[2,3,3.0]]print(11.index(2))
有两个关系R,S如下:由关系R通过运算得到关系S,则所使用的运算为()。
支持子程序调用的数据结构是()。
在软件开发中,需求分析阶段可以使用的工具是()。
以下关于Python全局变量和局部变量的描述中,错误的是()。
在软件开发中,需求分析阶段产生的主要文档是()。
以下关于Python技术特点的描述中,错误的是()。
授权模型实现了把______和______分开的机制。
Swing的选项面板是
随机试题
若f(x)在点x0处不连续,则f(x)在点x0处()
药物制剂的靶向性指标有
监理工程师所签发的(),在合同管理上的法律意义仅仅是证明合同双方最后谁应向谁支付多少款项的证明文件。
货物自中国沿海港口或内地城市经铁路运往港澳地区的货物,凭以结汇的单据为铁路运单。( )
“InonlysixdaysIlostsevenpoundsofweight.”“TwofullincheSinthefirstthreedays!”Thesearethekindsofstat
在某赈灾募捐活动中,某牛奶企业捐赠了价值数万元的酸奶。在运送酸奶到灾区的途中,因交通中断,滞留在某地,即将变质。此种情形下,下列处理方式符合相关规定的是()。[2009年真题]
建筑工地上有部分群众闹事,妨碍施工,办公室只有你一个人值班,你怎么处理?
Imagineaworldinwhichweareassignedanumberthatindicateshowinfluentialweare.Thisnumberwouldhelpdetermine【C1】___
Communication protocols are(66)connection-oriented or connectionless,(67)whether the sender of a message needs to contact and ma
Readthetextbelowaboutinformationtechnology(IT)training.Inmostofthelines(34-45),thereisoneextraword.Itisei
最新回复
(
0
)