tryexcept.java

来自「无线通信的主要编程软件,是无线通信工作人员的必备工具,关天相关教程我会在后续传上」· Java 代码 · 共 73 行

JAVA
73
字号
// Autogenerated AST nodepackage org.python.parser.ast;import org.python.parser.SimpleNode;import java.io.DataOutputStream;import java.io.IOException;public class TryExcept extends stmtType {    public stmtType[] body;    public excepthandlerType[] handlers;    public stmtType[] orelse;    public TryExcept(stmtType[] body, excepthandlerType[] handlers,    stmtType[] orelse) {        this.body = body;        this.handlers = handlers;        this.orelse = orelse;    }    public TryExcept(stmtType[] body, excepthandlerType[] handlers,    stmtType[] orelse, SimpleNode parent) {        this(body, handlers, orelse);        this.beginLine = parent.beginLine;        this.beginColumn = parent.beginColumn;    }    public String toString() {        StringBuffer sb = new StringBuffer("TryExcept[");        sb.append("body=");        sb.append(dumpThis(this.body));        sb.append(", ");        sb.append("handlers=");        sb.append(dumpThis(this.handlers));        sb.append(", ");        sb.append("orelse=");        sb.append(dumpThis(this.orelse));        sb.append("]");        return sb.toString();    }    public void pickle(DataOutputStream ostream) throws IOException {        pickleThis(17, ostream);        pickleThis(this.body, ostream);        pickleThis(this.handlers, ostream);        pickleThis(this.orelse, ostream);    }    public Object accept(VisitorIF visitor) throws Exception {        return visitor.visitTryExcept(this);    }    public void traverse(VisitorIF visitor) throws Exception {        if (body != null) {            for (int i = 0; i < body.length; i++) {                if (body[i] != null)                    body[i].accept(visitor);            }        }        if (handlers != null) {            for (int i = 0; i < handlers.length; i++) {                if (handlers[i] != null)                    handlers[i].accept(visitor);            }        }        if (orelse != null) {            for (int i = 0; i < orelse.length; i++) {                if (orelse[i] != null)                    orelse[i].accept(visitor);            }        }    }}

⌨️ 快捷键说明

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