在Java的异常处理模型中,无论是否发生异常,()块中的代码都会被执行。
A. try
B. catch
C. finally
D. throw
查看答案
在Java的异常处理中,用户自定义的常类应该是( )的子类
A. Exception
B. Throwable
C. Error
D. RuntimeException
定义一个名为Key的类,使之不能被继承,应选( )
A. class Key{}
B. native class Key{}
C. class Key{final;}
D. final class Key{}
下列方法中,不属于String类的方法是( )
A. toLowerCase()
B. valueOf()
C. charAt()
D. append
如变量a是String类型的数据,那么表达式(a+a)的类型是( )
A. char
B. String
C. int
D. long