• 2022-06-08
    下列哪种操作不会抛出异常?( )
    A: String str = "abc"; int i = Integer.parseInt(str);
    B: String str = null; str.toUperCase();
    C: int x = 4; int y = 5; int z = x / y ;
    D: int[] num = new int[5]; num[5] = 5;