Instanceof Operator
Instanceof Operator
This operator will still return true if the object being compared
is the assignment
compatible with the type on the right. Following is one more
example:
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 );
}
}