📄 op_other.hc
字号:
/** * This is included inside a switch statement. */case OP_ATHROW: tempStackWord = pop_ref(); if (tempStackWord == JNULL) { throw_exception (nullPointerException); goto LABEL_ENGINELOOP; } throw_exception (word2obj (tempStackWord)); goto LABEL_ENGINELOOP;case OP_MONITORENTER: enter_monitor (currentThread, word2obj(pop_ref())); goto LABEL_ENGINELOOP;case OP_MONITOREXIT: exit_monitor (currentThread, word2obj(pop_ref())); goto LABEL_ENGINELOOP;// Notes:// - Not supported: BREAKPOINT/*end*/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -