更多JAVA程序设计试题
- 1下列关于进程和线程的叙述中,正确的是
- 2下面关于classpath的说法中,错误的是
- 3下列关于类与对象的说法中,正确的是( )
- 4public class Example01 {public static void main(String[] args) {int[] arr = { 4, 1, 6, 3, 9, 8 };// 定义一个数组int minIndex = 0;//初始时设第1个角标处的值为最小值for (int i = 1; i < arr.length; i++) {if (______) {minIndex = i;}}System.out.println("数组中的最小值为:"+arr[minIndex]);}}请问在上述程序的横线处填写下列哪段代码,可以求到数组的最小值
- 5下列关于线程的优先级说法中,正确的是()
- 6编译运行下面的程序,结果是什么?public class A {public static void main(String[] args) {B b = new B();b.test();}void test() {System.out.print("A");}}class B extends A {void test() {super.test();System.out.print("B"); }}