下面系统定义的常用异常中哪个是访问没有实例化的对象时产生的( )。
ArithmeticException
B. NullPointerException
C. IOException
D. ArrayIndexOutOfBoundsException
查看答案
下面代码中,会抛出哪个类型的异常。()public class test{private static final String DRIVER=”com.mysql.jdbc.Driver”;private static final String URL=”jdbc:mysql://localhost:3306/db_database15”;private static final String USERNAME=”root”;private static final String PASSWORD=”111”;public static void main(String[] args){Class.forName(DRIVER);Connection conn=DriverManager.getConnection(URL,USERNAME,PASSWORD);}}
A. ClassNotFoundException
B. SQLException
C. JDBCException
D. MySQLException
要在方法中抛出异常需要使用关键字()。
A. try
B. catch
C. throws
D. throw
要在方法中俘获异常需要使用关键字()。
A. try
B. catch
C. throws
D. A和B
下列关于错误的描述正确的是()。
A. 错误是致命性的问题
B. 用户程序无法处理错误
C. Error类是所有错误类的父类
D. 以上都对