I have a simple class Apple extends from another simple class Fruit.
At run-time, I could use
Fruit fruit = new Apple();
fruit.getClass();
to get the actual type of fruit object, which is Apple.class.
I could also use fruit instanceof Apple, and fruit instanceof Fruit to verify if this fruit object is an instance of Apple or Fruit. Both of these 2 expressions return true, which is normal.
But is there a way to determine precisely the declared type of fruit identifier? Which in this case is Fruit.
You’re actually asking a question about the variable declaration of
fruitrather than the actual runtime type of the object (which is anApplein this case).I think this is in general a bad idea: you just declared the variable and told the compiler that it is a
Fruit, so why do you need to now need to find this out?Just to confuse matters even more, it’s worth noting that you can also have multiple variables with different declared types referencing the same object (which is still an Apple):
If you really want to find out the declared type, then you have a few options:
fruitan instance variable, and query the declared type using reflection.I think all of these are pretty ugly, so my general advice would be “don’t do it”.