标签: java java-bytecode-asm bytecode-manipulation
访问方法说明a.doAnother(account.getId);时使用visitMethodInsn()中的ASM。我需要从方法参数account.getId()获取帐户类型,帐户类型为Account。但是我得到account.getId()的返回类型long。 如何在此处获取Account的帐户类型?
a.doAnother(account.getId);
visitMethodInsn()
ASM
account.getId()
Account
long