INSTANCEOF
InstanceOf is a binary operator of Java, and ==,>,
String s = "i am an object!"; Boolean isobject = s instanceof object;
We declare a String object reference, point to a String object, then use instancof to test whether the object it is pointing is an instance of the object class, obviously, this is true, so returns true, that is, isobject is True.