이 연산자는 객체 참조 변수에만 사용됩니다. 이 연산자는 객체가 특정 유형(클래스 유형 또는 인터페이스 유형)에 속하는지 여부를 확인합니다. instanceof 연산자는 -
( Object reference variable ) instanceof (class/interface type)
로 작성됩니다. 연산자 왼쪽의 변수가 참조하는 객체가 오른쪽 클래스/인터페이스 유형의 IS-A 검사를 통과하면 결과는 true가 됩니다. 다음은 예입니다. -
Live Demonstration
public class Test { public static void main(String args[]) { String name = "James"; // following will return true since name is type of String boolean result = name instanceof String; System.out.println( result ); } }
이 결과는 다음과 같습니다. -
true
비교되는 개체가 오른쪽 유형과 호환되는 할당인 경우 연산자 여전히 true를 반환합니다. 다음은 또 다른 예입니다.
Live Demo p>
class Vehicle {} public class Car extends Vehicle { public static void main(String args[]) { Vehicle a = new Car(); boolean result = a instanceof Car; System.out.println( result ); } }
이렇게 하면 다음과 같은 결과가 생성됩니다. -
true
위 내용은 Java의 instanceof 연산자의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!