I've been doing some personal research in Java bytecode and I came across a bit of an oddity. If I decompile this class, I find a reference to Class.forName()
hanging out in the constant pool. However, there is no reference in the source code to this method.
I assume that something about this code is causing javac to emit a bit of code that dynamically loads a class, but I'm not sure why this happens. It strikes me as inefficient, but mainly I'm just curious as to why this happens.
After disassembling the code with
javap
, I noticed that there is a method that doesn't exist in the source code:It looks like this is generated in bytecode compiled for version < JDK1.5 whenever there is a class literal referenced in the code [1]. Basically, this:
turns into this:
and
class$()
looks like this:Apparently in JDK1.5, the
ldc_w
instruction was given the ability to load class constants and theclass$()
method was no longer necessary.