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.
我可以在类的方法中编写字节码,以便编译器绕过该部分,因为它已经编译。类似于使用“asm”用 C 语言编写汇编程序的东西......
我认为您的意思是Java。如果是这样的话:
简短的回答:没有。
长答案:Java 中没有任何东西asm { ... }。但是您可以(在大多数情况下不是很聪明)从 Java 编写一个.class文件(或以文本表示的字节码,然后用 Java 将其组装成一个.class文件)并动态加载和执行它。
asm { ... }
.class