搜索
首页Javajava教程Java中的instanceOf

Java中的InstanceOf用于在Java代码片段中实现继承概念时确定对象与其类的关系。一般来说,instanceOf类适用于允许继承的面向对象编程语言,它以布尔结果的形式返回输出值,即true或false。如果 instanceOf 类变量具有 NULL 值,则该类将输出返回为“false”。由于此类用于比较目的,因此也称为“类型比较运算符”。

开始您的免费软件开发课程

网络开发、编程语言、软件测试及其他

语法:

instanceOf 类用于检查对象是否属于任何类。

obj instanceOf object

以上是instanceOf类的标准语法。这里, obj 是之前创建的对象的名称(引用)。 instanceOf 是关键字,object 是我们与 obj 对象匹配的类或接口。

在各种情况下,instanceOf可以被证明是有主要用途的,比如我们有一个对象集合,而你不确定它引用的是哪个对象。这种情况的一个例子是带有许多控件的简单表单。

此外,如果我们将 instanceOf 与具有 NULL 值的变量一起使用,它肯定会返回 false。

实例如何工作?

java中的instanceOf运算符适用于简单的is-a关系。简单地说,is-a 关系是一个面向对象的概念,我们在抽象之间比较或者说处理抽象之间的关系,其中类 A 是类 B 的子类。这是一种完全基于继承的关系。换句话说,这就像在说“X是Y类型”。

现在,让我们了解 instanceOf 的工作原理以及相应的代码。

首先,我们将创建一个名为 Parent 的类。

代码:

class Parent{
}
//Then let’s add a simple main class.
public static void main(String args[]) {
}

然后我们将创建 Parent 类的一个实例。

Parent child = new Parent();

最后,我们将使用instanceOf运算符来检查child和Parent之间的关系。如下所示: child instanceOf Parent

现在,如前所述,instanceOf 的语法来自于必须检查的对象,然后是instanceOf 关键字,然后是要测试给定对象的类/接口。

在类声明中遇到关键字“extends”或“implements”的任何时候,这都是正在使用 is-a 关系的明显标志。

Java中instanceOf的例子

以下示例演示了instanceOf的单行使用。

class instanceof_java{
public static void main(String args[]) {
instanceof_java s = new instanceof_java();
System.out.println(s instanceOf instanceof_java);
}
}

代码解读:从创建一个简单的类instanceof_java开始。在类instanceof_java中,我们有我们的主类,并且在我们的主类中,我们创建了一个对象。这个对象s是instanceof_java类型的。然后为了实现instanceOf的工作,我们提供了一个带有对象s的输出语句。在最后一行中,我们将 s 与 instanceof 关键字和父类一起传递。执行后,代码将返回“true”,因为对象 s 是 instanceof 类型。

Java中的instanceOf

更进一步,如果我们有一个已知类或接口的对象,但没有为同一个对象分配任何值,它必然会返回 false,即使我们属于同一类。

class instanceof_sample{
public static void main(String args[]) {
instanceof_sample new = null;
System.out.println(new instanceOf instanceof_sample);
}
}

这里我们有一个与前面的示例类似的代码,但具有空值对象。执行时,此代码将返回 false。正如我们所看到的,对象new是instanceof_sample的实例,但new被分配了一个空值,返回false。

Java中的instanceOf

instanceOf 运算符的规则

基于对象 ref 是否不为 null 以及引用类型的实例。当 X 是所引用对象的简单类,Y 是已解析的类或接口类型的数组时。

  • When X is a simple class, then:
  • If Y is a class type, then the X must be a subclass of Y, or X must the same class as Y.
  • If Y is an interface type, then the X class must implement interface T.
  • When X is type interface, then:
  • If Y is a class type, then the Y must be an Object.
  • Y can be the same as the interface as X or super interface of X if Y is an interface type.
  • If X is a class, which is representing the array type SC[], which is an array of type SC components, then:
  • If Y is a class type, then Y must be an object.
  • If Y is an interface type, then Y must be of interface type implemented by arrays.

Finally, we will demonstrate an instanceOf program to understand that the parent object cannot be an instance of the child class.

Program

class Subject {  }
class Topic extends Subject { }
class instanceof_java
{
public static void main(String[] args)
{
Subject history = new Subject ();
if (history instanceof Topic)
System.out.println("history is instance of Topic");
else
System.out.println("history is NOT instance of Topic");
}
}

Code Interpretation: For the purpose of understanding the instanceOf operator in different scenarios, we wrote the above code. We created a simple class Subject and then another class Topic, which extends class Subject, making the class Topic as child and class Subject as Parent here. Then another class with the main method. Within the main method, we created a new instance of parent class Subject. In the IF ELSE loop, we checked the instance object’s condition with the parent class Subject. If the condition was fulfilled, it would return “history is an instance of Topic” and “history is NOT an instance of Topic” if the condition fails.

Upon executing the above code, the output will be “history is NOT an instance of Topic”, meaning the condition passed in IF fails. It happened because we tried to check the parent of the object “history” with the class Topic. We know that the class Topic extends the class Subject, meaning Topic is a subclass to Subject. And when we tried to check the type of history with class Topic, it returns false (NOT). This means the Parent Object cannot be an instance of a class.

 Output:

Java中的instanceOf

Conclusion

We have learned about instanceOf class in Java, which simply decides if the object is of the given type. We understood how is-a relationship impacts on instanceOf operator. Also known as a comparison operator, instanceOf is based on inheritance.

以上是Java中的instanceOf的详细内容。更多信息请关注PHP中文网其他相关文章!

声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
带你搞懂Java结构化数据处理开源库SPL带你搞懂Java结构化数据处理开源库SPLMay 24, 2022 pm 01:34 PM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于结构化数据处理开源库SPL的相关问题,下面就一起来看一下java下理想的结构化数据处理类库,希望对大家有帮助。

Java集合框架之PriorityQueue优先级队列Java集合框架之PriorityQueue优先级队列Jun 09, 2022 am 11:47 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于PriorityQueue优先级队列的相关知识,Java集合框架中提供了PriorityQueue和PriorityBlockingQueue两种类型的优先级队列,PriorityQueue是线程不安全的,PriorityBlockingQueue是线程安全的,下面一起来看一下,希望对大家有帮助。

完全掌握Java锁(图文解析)完全掌握Java锁(图文解析)Jun 14, 2022 am 11:47 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于java锁的相关问题,包括了独占锁、悲观锁、乐观锁、共享锁等等内容,下面一起来看一下,希望对大家有帮助。

一起聊聊Java多线程之线程安全问题一起聊聊Java多线程之线程安全问题Apr 21, 2022 pm 06:17 PM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于多线程的相关问题,包括了线程安装、线程加锁与线程不安全的原因、线程安全的标准类等等内容,希望对大家有帮助。

详细解析Java的this和super关键字详细解析Java的this和super关键字Apr 30, 2022 am 09:00 AM

本篇文章给大家带来了关于Java的相关知识,其中主要介绍了关于关键字中this和super的相关问题,以及他们的一些区别,下面一起来看一下,希望对大家有帮助。

Java基础归纳之枚举Java基础归纳之枚举May 26, 2022 am 11:50 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于枚举的相关问题,包括了枚举的基本操作、集合类对枚举的支持等等内容,下面一起来看一下,希望对大家有帮助。

java中封装是什么java中封装是什么May 16, 2019 pm 06:08 PM

封装是一种信息隐藏技术,是指一种将抽象性函式接口的实现细节部分包装、隐藏起来的方法;封装可以被认为是一个保护屏障,防止指定类的代码和数据被外部类定义的代码随机访问。封装可以通过关键字private,protected和public实现。

归纳整理JAVA装饰器模式(实例详解)归纳整理JAVA装饰器模式(实例详解)May 05, 2022 pm 06:48 PM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于设计模式的相关问题,主要将装饰器模式的相关内容,指在不改变现有对象结构的情况下,动态地给该对象增加一些职责的模式,希望对大家有帮助。

See all articles

热AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover

AI Clothes Remover

用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool

Undress AI Tool

免费脱衣服图片

Clothoff.io

Clothoff.io

AI脱衣机

AI Hentai Generator

AI Hentai Generator

免费生成ai无尽的。

热门文章

R.E.P.O.能量晶体解释及其做什么(黄色晶体)
2 周前By尊渡假赌尊渡假赌尊渡假赌
仓库:如何复兴队友
1 个月前By尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island冒险:如何获得巨型种子
4 周前By尊渡假赌尊渡假赌尊渡假赌

热工具

螳螂BT

螳螂BT

Mantis是一个易于部署的基于Web的缺陷跟踪工具,用于帮助产品缺陷跟踪。它需要PHP、MySQL和一个Web服务器。请查看我们的演示和托管服务。

VSCode Windows 64位 下载

VSCode Windows 64位 下载

微软推出的免费、功能强大的一款IDE编辑器

Dreamweaver Mac版

Dreamweaver Mac版

视觉化网页开发工具

SublimeText3 英文版

SublimeText3 英文版

推荐:为Win版本,支持代码提示!

记事本++7.3.1

记事本++7.3.1

好用且免费的代码编辑器