深入探索编译插桩技术(四、ASM 探秘,技术协会安卓部面试三、ASM 的事件模型(ASM Core API)四、综合实战训练
4、插入指定的操作码InsnList 主要提供了 四类 方法用于插入字节码,如下所示:1)、add(AbstractInsnNode insn): 将一个操作码添加到 InsnList 的末尾。2)、insert(AbstractInsnNode insn): 将一个操作码插入到这个 InsnList 的开头。3)、insert(AbstractInsnNode insnNode,AbstractInsnNode insn): 将一个操作码插入到另一个操作码的下面。4)、insertBefore