⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 trystate.java

📁 这是一个Linux下的集成开发环境
💻 JAVA
字号:
// Copyright (c) 1997  Per M.A. Bothner.// This is free software;  for terms and warranty disclaimer see ./COPYING.package gnu.bytecode;import java.io.*;/** The state of a try statement. */public class TryState {  /** The surrounding TryState, if any. */  TryState previous;  /** The label for the code following the entire try-statement. */  Label end_label;  /** If this "try" has a "finally", the Label of the "finally" sub-routine. */  Label finally_subr;  /** Used for the return address of the finally subroutine (if any). */  Variable finally_ret_addr;  /** Non-null if we need a temporary to save the result. */  Variable saved_result;  /** If the SP > 0 when we entered the try, the stack is saved here. */  Variable[] savedStack;  int start_pc;  int end_pc;  /** If we are inside a try, the type of variable matched. */  ClassType try_type;  public TryState (CodeAttr code)  {    previous = code.try_stack;    code.try_stack = this;    start_pc = code.PC;  }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -