简体   繁体   中英

Intermediate code generator for Java

is there a tool for generating intermediate code for java files?Or are there any resources that could help in generating one?Thanks.

Java source is normally compiled to an intermediate representation known as Java bytecode. If that's what you want, then you just need a Java compiler. If you want the JVM assembler code, the you can run the disassembler, javap, over the.class file.

If it isn't either of those, then you'll have to be more specific about which intermediate code you want.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM