Skip to content

Tag: intrinsics

Why do java intrinsic functions still have code?

There are many methods in the Java API that are intrinsics, but still have code associated with them when looking at the source code. For an example, Integer.bitCount() is an intrinsic, but if you open the Integer class file, you can see code with it. What purposes might this code serve if it is not necessari…