> Java > java지도 시간 > Java의 인스턴스오브

Java의 인스턴스오브

WBOY
풀어 주다: 2024-08-30 15:44:53
원래의
998명이 탐색했습니다.

Java의 InstanceOf는 Java 코드 조각에서 상속 개념이 구현될 때 객체와 해당 클래스의 관계를 결정하는 데 사용됩니다. 일반적으로 instanceOf 클래스는 상속을 허용하는 객체 지향 프로그래밍 언어에 적용 가능하며 부울 결과 형식, 즉 true 또는 false로 출력 값을 반환합니다. instanceOf 클래스 변수에 NULL 값이 있는 경우 클래스는 출력을 'false'로 반환합니다. 이 클래스는 비교 목적으로 사용되므로 '형 비교 연산자'라고도 합니다.

무료 소프트웨어 개발 과정 시작

웹 개발, 프로그래밍 언어, 소프트웨어 테스팅 등

구문:

instanceOf 클래스는 객체가 어떤 클래스인지 확인하는 데 사용됩니다.

obj instanceOf object
로그인 후 복사

위는 instanceOf 클래스의 표준 구문입니다. 여기서 obj는 앞서 생성되었음에 틀림없는 객체의 이름이다(참조). instanceOf는 키워드이고, 객체는 obj 객체와 일치하는 클래스 또는 인터페이스입니다.

instanceOf는 객체 컬렉션이 있고 어떤 객체를 참조하는지 확실하지 않은 경우와 같이 다양한 경우에 유용하게 사용될 수 있습니다. 이러한 경우의 예로는 많은 컨트롤이 포함된 간단한 양식을 들 수 있습니다.

또한 NULL 값을 갖는 변수와 함께 instanceOf를 사용하는 경우에는 반드시 false를 반환합니다.

instanceOf는 어떻게 작동하나요?

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 instanceOf Parent

이제 앞서 언급한 것처럼, instanceOf의 구문은 확인해야 하는 개체, 그 다음에는 instanceOf 키워드, 그 다음은 해당 개체를 테스트할 클래스/인터페이스로 이어집니다.

클래스 선언에서 "확장" 또는 "구현"이라는 키워드를 발견하는 경우 이는 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);
}
}
로그인 후 복사

코드 해석: 간단한 인스턴스of_java 클래스를 만드는 것으로 시작되었습니다. instanceof_java 클래스에는 메인 클래스가 있고, 메인 클래스에는 생성된 객체가 있습니다. 이 객체는 instanceof_java 유형입니다. 그런 다음 instanceOf의 작업을 구현하기 위해 객체 s가 포함된 출력 문을 제공했습니다. 마지막 줄에서는 s를 instanceof 키워드 및 상위 클래스와 함께 전달했습니다. 실행 시 객체가 인스턴스 유형이기 때문에 코드는 'true'를 반환합니다.

Java의 인스턴스오브

더 나아가, 알려진 클래스나 인터페이스의 객체가 있지만 동일한 객체에 값을 할당하지 않은 경우 동일한 클래스에 속하더라도 false를 반환할 수밖에 없습니다.

class instanceof_sample{
public static void main(String args[]) {
instanceof_sample new = null;
System.out.println(new instanceOf instanceof_sample);
}
}
로그인 후 복사

여기에는 이전 예제와 비슷한 코드가 있지만 null 값 개체가 있습니다. 실행되면 이 코드는 false를 반환합니다. 보시다시피 new 객체는 instanceof_sample의 인스턴스이지만 new에는 null 값이 할당되어 false를 반환합니다.

Java의 인스턴스오브

instanceOf 연산자 규칙

객체 참조 가 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의 인스턴스오브

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의 인스턴스오브의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

관련 라벨:
원천:php
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿