I've read this link The performance impact of using instanceof in Java, this is its citation:
Modern JVM/JIC compilers have removed the performance hit of most of the traditionally "slow" operations, including instanceof, exception handling, reflection, etc.
I'm wondering what JIT does with instanceOf
operator. Is there any detail explanation. Thank you so much!