foo.class java文件中的指令数

前端之家收集整理的这篇文章主要介绍了foo.class java文件中的指令数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我有一个java程序的二进制文件说foo.class.我可以计算该类文件中的指令数吗?或者我必须有源代码来计算指令数量.

最佳答案
只需disassemble使用javap的类.-c选项

…prints out disassembled code,i.e.,the instructions that comprise the
Java bytecodes,for each of the methods in the class. These are
documented in the Java Virtual Machine Specification

原文链接:https://www.f2er.com/java/438274.html

猜你在找的Java相关文章