2023年12月6日

JVM指令

摘要: pop Pop the top operand stack value 弹出 操作数 栈顶的值 astore_<n> Store reference into local variable aload_<n> Load reference from local variable getstatic 阅读全文

posted @ 2023-12-06 15:34 anpeiyong 阅读(1) 评论(0) 推荐(0) 编辑

异常机制

摘要: JVM如何处理异常? exception table 概念 方法的异常表 from :可能发生异常的起始点 to :可能发生异常的结束点 target :上述from和to之前发生异常后的异常处理者的位置 type :异常处理者处理的异常的类信息 什么时候被使用? 异常发生的时候 如何被使用? 1. 阅读全文

posted @ 2023-12-06 15:32 anpeiyong 阅读(5) 评论(0) 推荐(0) 编辑

导航