线程的开启要使用线程实体的()方法,开启的新线程并发执行实体的run方法。
(A)void run()
(B)void start()
(C)void join()
(D)void wait()
参考答案
继续答题:下一题
更多java基础知识试题
- 1以下代码输出结果为:public class IfTest{ public static void main(String[] args){ int x=3; int y=1; if(x=y) System.out.println("不相等"); else System.out.println("相等"); }}
- 2以下输出是什么 ?class LowHighSwap{ static void doIt( int[] z ) { int temp = z[z.length-1]; z[z.length-1] = z[0]; z[0] = temp; }}class TestIt{ public static void main( String[] args ) { int[] myArray = {1, 2, 3, 4, 5}; LowHighSwap.doIt(myArray); for (int i = 0; i < myArray.length; i++) { System.out.print(myArray[i] + " "); } }}
- 3在Java中,包有多种用途,但不包含( )
- 4在Java中,所有类的根类是( ).
- 5声明一个类的方法是最终的,即不能被其子类覆盖该方法,应使用( )修饰符