更多JAVA程序设计试题
- 1public 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]);}}请问在上述程序的横线处填写下列哪段代码,可以求到数组的最小值
- 2如果父类的方法是静态的,则子类的方法被()修饰才能覆盖父类的静态方法?
- 3以下代码的执行结果是Set s=new HashSet();s.add("abc");s.add("abc");s.add("abcd");s.add("ABC");System.out.println(s.size());
- 4请阅读下面的程序,程序的运行结果是()。class Person {String name;int age;public Person() {}public Person(String n, int a) {name = n;age = a;}public void show() {System.out.print(name + "---" + age +"");}}public class Test {public static void main(String[] args) {Person p1 = new Person();p1.show();Person p2 = new Person("周星驰", 27);p2.show();}}
- 5ResultSetMetaData rsmd = rs.getMetaData()是什么意思?
- 6下列关于Java特点的描述中,错误的是?