更多JAVA程序设计试题
- 1JDBC中,用于表示数据库连接的对象是?
- 2下列有关线程的叙述哪个是正确的
- 3使用TreeSet的无参构造创建集合对象存储元素时,该元素必须()?
- 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设有定义 int i=123;long j=456; 下面赋值不正确的语句是