Check if an object belongs to a class in Java(检查一个对象是否属于Java中的一个类)
问题描述
有没有一种简单的方法来验证一个对象是否属于给定的类?例如,我可以这样做
Is there an easy way to verify that an object belongs to a given class? For example, I could do
if(a.getClass() = (new MyClass()).getClass())
{
//do something
}
但这需要每次都在运行中实例化一个新对象,只是为了丢弃它.有没有更好的方法来检查a"是否属于MyClass"类?
but this requires instantiating a new object on the fly each time, only to discard it. Is there a better way to check that "a" belongs to the class "MyClass"?
推荐答案
instanceof 关键字,如其他答案所述,通常是您想要的.请记住,instanceof 也会为超类返回 true.
The instanceof keyword, as described by the other answers, is usually what you would want.
Keep in mind that instanceof will return true for superclasses as well.
如果你想查看一个对象是否是一个类的直接实例,你可以比较这个类.您可以通过getClass() 获取实例的类对象.您可以通过 ClassName.class 静态访问特定的类.
If you want to see if an object is a direct instance of a class, you could compare the class. You can get the class object of an instance via getClass(). And you can statically access a specific class via ClassName.class.
例如:
if (a.getClass() == X.class) {
// do something
}
在上面的示例中,如果 a 是 X 的实例,则条件为真,但如果 a 是 a 的实例,则条件不成立X 的子类.
In the above example, the condition is true if a is an instance of X, but not if a is an instance of a subclass of X.
比较:
if (a instanceof X) {
// do something
}
在 instanceof 示例中,如果 a 是 X 的实例,或者 a 的实例,则条件为真> 是 X 的 子类 的一个实例.
In the instanceof example, the condition is true if a is an instance of X, or if a is an instance of a subclass of X.
大多数时候,instanceof 是对的.
Most of the time, instanceof is right.
这篇关于检查一个对象是否属于Java中的一个类的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:检查一个对象是否属于Java中的一个类
基础教程推荐
- Java ECDSAwithSHA256 签名长度不一致 2022-01-01
- doFilter()是在servlet的工作完成之前还是之后执行的? 2022-01-01
- 在java中使用xpath和selenium解析HTML表格数据 2022-01-01
- 将 Windows 证书导入 Java 2022-01-01
- 如何在相机中应用自定义滤镜 [Surfaceview 预览]. 2022-01-01
- 将 double 转换为 Int,向下舍入 2022-01-01
- 控制台应用程序中的 Java 键盘输入解析 2022-01-01
- 在springboot中如何给mybatis加拦截器 2023-04-29
- JPA惰性列表上的流 2022-01-01
- Maven:无效的目标版本:10 2022-01-01
