In a Java 7 multicatch block what is the type of the caught exception?(在 Java 7 多捕获块中,捕获的异常的类型是什么?)
问题描述
在 Java 7 多捕获块中,如下所示:
In a Java 7 multicatch block such as the following:
try {
// code that throws exception
} catch (CharacterCodingException | UnknownServiceException ex) {
// handle exception
}
ex
的编译时类型是什么?它是两种异常类型共有的最派生类吗?在此示例中,这将是一个 IOException
.
what is the compile-time type of ex
? Is it the most derived class that both exception types have in common? In this example that would be an IOException
.
推荐答案
是的,ex
的类型是 CharacterCodingException
和 UnknownServiceException 最具体的超类型
,即 IOException
.
Yes, the type of ex
is the most specific supertype of both CharacterCodingException
and UnknownServiceException
, which would be IOException
.
直接从马嘴里http://cr.openjdk.java.net/~darcy/ProjectCoin/ProjectCoin-Documentation-v0.83.html#multi_catch:
非正式地,lub(最小上限)是所讨论类型中最具体的超类型.
Informally, the lub (least upper bound) is the most specific supertype of the types in question.
这篇关于在 Java 7 多捕获块中,捕获的异常的类型是什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 Java 7 多捕获块中,捕获的异常的类型是什么
基础教程推荐
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- 降序排序:Java Map 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01