• 2022-05-28
    阅读下列代码,下面哪个选项是正确的( )public class TestException{public static void main(String []args) throws Exception{ if(args[0]=="123") //命令行输入参数123 throw new IOException(); }}
    A: 程序编译正确,命令行输入参数123,抛出异常
    B: 程序语法错误
    C: 程序编译错误,
    D: 程序编译正确,没有输出结果
  • 举一反三