下列程序段中parseInt的作用是()String input = JOptionPane.showInputDialog("whats your age?");int age = Integer.parseInt(input);
A. 将字符串转化为整数
B. 将整数转化为字符串
C. 对字符串进行语法分析
D. 对整数进行语法分析
查看答案
下列程序段的运行结果是()int[][] a = { { 1, 2, 3, 4 }, { 5, 6, 7, 8 }, { 9, 10, 11, 12 }, { 13, 14, 15, 16 } };int i, j, s = 0;for (i = 0; i < 3; i++) for (j = 0; j < i + 1; j++) s = s + a[i][3 - j];System.out.print(s);
A. 52
B. 36
C. 42
D. 26
下列系统定义的异常类中, 数组越界异常是()
ArrayIndexOutOfBoundsException
B. IOException
C. NullPointerException
D. ArithmeticException
关于下列程序, 正确的描述是()public class myprogram { public static void main(String[] args) { try { System.out.print("Hello world "); } finally { System.out.println("Finally executed"); } }}
A. 无法编译运行, 因为没有指定异常
B. 无法编译运行, 因为没有catch EOFException子句
C. 输出"Hello world"
D. 输出"Hello world Finally executed"
下列选项中实现了Map接口的类是()
A. HashMap
B. LinkedList
C. Vector
D. ArrayList