Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个java程序的二进制文件说foo.class。我是否可以计算该类文件中的指令数?还是我必须有源代码才能计算指令的数量。
只需使用javap反汇编类。-c选项_
...为类中的每个方法打印出反汇编代码,即组成 Java 字节码的指令。这些都记录在 Java 虚拟机规范中