Java 异常有哪些类型?
What are the types of Exceptions?
题目类型: 技术面试题
这是一道技术面试题,常见于澳洲IT公司面试中。
难度: medium
分类: Exception Handling
标签: checked-exception, unchecked-exception
参考答案摘要
答案 受检异常(Checked Exception) 受检异常在编译时由编译器检查。除 RuntimeException 和 Error 之外,所有继承自 Throwable 的异常类都属于受检异常。受检异常必须使用 throws 关键字声明,或者用合适的 try/catch 进行处理。 例如: ClassNotFoundException 非受检异常(Unchecked Exception) 非...
本题提供 STAR 原则详细解答和技术解析,登录匠人学院学习中心即可查看完整答案。