Learning about Java bytecode and the JVM

前端 未结 6 490
孤独总比滥情好
孤独总比滥情好 2021-01-29 19:15

In a recent question asked recently my simple minded answer highlighted many of my misconceptions about Java, the JVM, and how the code gets compiled and run. This has created

6条回答
  •  失恋的感觉
    2021-01-29 20:02

    I learned by reading the ASM tutorial and mucking about with the library itself.

    IMHO, ASM is better than BECL.

    BCEL is already being used successfully in several projects such as compilers, optimizers, obsfuscators, code generators and analysis tools. Unfortunately there hasn't been much development going on over the past few years. Feel free to help out or you might want to have a look into the ASM project at objectweb. - http://jakarta.apache.org/bcel/

提交回复
热议问题