Thread类中的currentThread()方法返回当前正在使用CPU资源的线程。() 此题为判断题(对,错)。
Thread类中的currentThread()方法返回当前正在使用CPU资源的线程。()
此题为判断题(对,错)。
相关考题:
怎样创建线程() A.通过Thread类的构造方法创建线程B.Thread类提供了start()方法创建线程C.通过实现Runnable接口创建线程D.通过使用Thread类提供的interrupt()方法创建线程
下列选项中( )方法可以判断线程是否处于活动状态。A.boolean is Alive()B.Thread currentThread()C.String getName()D.static boolean interrupted()
Thread类中能运行线程的方法是( )。A.resume( )B.start( )C.run( )SXB Thread类中能运行线程的方法是( )。A.resume( )B.start( )C.run( )D.init( )
下列关于Thread类中方法的叙述正确的是( )。A.方法activeCount()的功能是获取当前活动的线程数B.方法enumerate()的功能是拷贝当前活动线程信息C.方法getName()获取线程的名称,而方法getThreadGroup()可以获取当前线程所属线程组的名称D.方法toString()的功能是转化输入的数据类型,以字符串形式输出
下列程序的运行结果是______。 Class C14 implements Runnable { private int i; public C14(int n) { this.i = n; } public void run{) { try { Thread.currentThread().sleep(i); } catch(InterruptedException ie) { System.err.println(ie.tString()); } System.out.println("线程" + Thread.currentThread() .getName + "睡眠了" + i + "毫秒结束"); } } public class Testl4 { public static void main(String[] args) { Thread t = new Thread(new C14(300), "t"); t.start(); } }A.线程t睡眠了300毫秒结束B.线程Thread-0睡眠了300毫秒结束C.线程t睡眠了i毫秒结束D.线程Thread-0睡眠了i毫秒结束
下列选项中哪个方法可以判断线程是否处于活动状态? ( )A.blooean is Alive()B.Thread currentThread()C.String getName()D.static boolean interrupted()
下列说法中错误的一项是______。A.通过执行Thread.currentThrea《)返回当前线程的引用B.currentThread()方法是静态方法C.stop()方法强行终止线程的执行,线程结束后,仍然可以再运行D.线程a通过a.suspend()方法暂停执行,通过调用a.resume()恢复执行
用Thread子类实现多线程的步骤顺序是( ) A、声明Thread类的子类,创建Thread子类的实例,让线程调用start()方法B、声明Thread类的子类,在子类中重新定义run()方法,创建Thread子类的实例C、创建Thread子类的实例,让线程调用start()方法D、声明Thread类的子类,在子类中重新定义run()方法,创建Thread子类的实例,让线程调用start()方法
下列说法中错误的一项是 ( )A.使用继承Thread类创建线程,可以直接调用线程的方法B.通过实现Runnable接口创建线程,体现了面向对象的思想C.Thread类从面向对象的角度看,是虚拟CPU的封装D.通过实现Runnable接口创建线程,会影响Thread类的体系
下面关于Java中线程的说法不正确的是()A、调用join()方法可能抛出异常InterruptedException。B、sleep()方法是Thread类的静态方法。C、调用Thread类的sleep()方法可终止一个线程对象。D、线程启动后执行的代码放在其run方法中。
使用Thread子类创建线程的优点是可以在子类中增加新的成员变量,使线程具有某种属性,也可以在子类中新增加方法,使线程具有某种功能。但是,Java不支持多继承,Thread类的子类不能再扩展其他的类。
You use Microsoft .NET Framework 4 to create a Windows Forms application. You need to allow the user interface to use the currently configured culture settings in the Control Panel. Which code segment should you use?()A、Thread.CurrentThread.CurrentUICulture = Thread.CurrentThread.CurrentCulture;B、Thread.CurrentThread.CurrentCulture = Thread.CurrentThread.CurrentUICulture;C、Thread.CurrentThread.CurrentUICulture = CultureInfo.InstalledUICulture;D、Thread.CurrentThread.CurrentCulture = CultureInfo.InstalledUICulture;
单选题在C#中,通过调用Thread类的Sleep(intx)方法来实现禁止线程运行,其中x代表()。A禁止线程运行的微秒数B禁止线程运行的豪秒数C禁止线程运行的秒数D禁止线程以内性的CPU时间数
判断题使用Thread子类创建线程的优点是可以在子类中增加新的成员变量,使线程具有某种属性,也可以在子类中新增加方法,使线程具有某种功能。但是,Java不支持多继承,Thread类的子类不能再扩展其他的类。A对B错