obj instanceof Arrays
would help be know if obj
is instance of Arrays
, but what i want to know if what operator to use to find if obj
is a subclass of Arrays
?
Assume class Animal is super class of Dog.
Dog d = new Dog().
if (dog
"which operator ? " Animal
) would result in true
?