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

📄 compare.java

📁 无线通信的主要编程软件,是无线通信工作人员的必备工具,关天相关教程我会在后续传上.
💻 JAVA
字号:
// Autogenerated AST nodepackage org.python.parser.ast;import org.python.parser.SimpleNode;import java.io.DataOutputStream;import java.io.IOException;public class Compare extends exprType implements cmpopType {    public exprType left;    public int[] ops;    public exprType[] comparators;    public Compare(exprType left, int[] ops, exprType[] comparators) {        this.left = left;        this.ops = ops;        this.comparators = comparators;    }    public Compare(exprType left, int[] ops, exprType[] comparators,    SimpleNode parent) {        this(left, ops, comparators);        this.beginLine = parent.beginLine;        this.beginColumn = parent.beginColumn;    }    public String toString() {        StringBuffer sb = new StringBuffer("Compare[");        sb.append("left=");        sb.append(dumpThis(this.left));        sb.append(", ");        sb.append("ops=");        sb.append(dumpThis(this.ops, cmpopType.cmpopTypeNames));        sb.append(", ");        sb.append("comparators=");        sb.append(dumpThis(this.comparators));        sb.append("]");        return sb.toString();    }    public void pickle(DataOutputStream ostream) throws IOException {        pickleThis(34, ostream);        pickleThis(this.left, ostream);        pickleThis(this.ops, ostream);        pickleThis(this.comparators, ostream);    }    public Object accept(VisitorIF visitor) throws Exception {        return visitor.visitCompare(this);    }    public void traverse(VisitorIF visitor) throws Exception {        if (left != null)            left.accept(visitor);        if (comparators != null) {            for (int i = 0; i < comparators.length; i++) {                if (comparators[i] != null)                    comparators[i].accept(visitor);            }        }    }}

⌨️ 快捷键说明

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