I need a method where i could pass on a parameter which i assume would be a Class (not sure though) and in that method, instanceof would be used to check if x is an instance of the passed Class.
How should i do that? I tried a few things but none worked.
How about this:
public boolean checker(Object obj) {
return obj instanceof SomeClass;
}
or if SomeClass
needs to be a parameter:
public boolean checker(Object obj, Class someClass) {
return someClass.isInstance(obj);
}
or if you want the instance to be someClass
and NOT an instance of a subclass of someClass
:
public boolean checker(Object obj, Class someClass) {
return someClass.equals(obj.getClass());
}
Use Class.isInstance(Object)
.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With