Skip to main content

All Questions

Tagged with
4 votes
2 answers
399 views

java JVM bytecode notation, comment grammar. InvokeDynamic

Question: What does line 14 means? Use javap -v -c to disassembly the following code: public class test { static int i = 2; public static void main(String[] args) { test x = new ...
schen's user avatar
  • 137
0 votes
1 answer
164 views

Does the instruction istore start at index 1 in the main method?

Given the instruction istore_<n> and its documentation: n must be an index into the local variable array of the current frame (§2.6). It does not specify what index it starts at. I assume 0. ...
gel's user avatar
  • 281