Search code examples
jvmbytecode

I'm curious about what ldc short for in JVM?


ByteCode:ldc pushes a one-word constant onto the operand stack. ldc takes a single parameter, , which is the value to push.

Most of the bytecodes in JVM can figure out their name by the code description. However, the ldc, I don't see any clue.


Solution

  • I suppose it is LoaD Constant but I do not have any reference.