I am looking at some disassembled code obtained from Java bytecode. I see some declaration as follows:
.method static synthetic access$0()Lcom/package/Sample;
I am not able to figure out what the synthetic
or access$0
mean. Can someone please help me understand this part?
Synthetic field, (2)
See also
The JavaTM Virtual Machine Specification (§4.7.6)
or Synthetic Class in Java.