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

📄 walkable.java

📁 用Java实现的编译器。把源代码编译成SPARC汇编程序
💻 JAVA
字号:
// $Id: Walkable.java,v 1.3 1999/09/27 20:01:29 deberg Exp $package java6035.tools.IR;/** * The Walkable interface specifies a set of methods that defines a web.  */public interface Walkable {    /**     * Returns the name of the node     */    public String getNodeName();    /**     * Returns the number of neighbors from this node     */    public int getNeighborCount();    /**     * Returns a specific neighbor     */    public Object getNeighbor(int index);    /**     * Returns a pretty print of the representation of the node.      *     * @param indent    number of blank spaces to skip for a new line     * @param recursive if true, recursively print children     */    public String PPrint(int indent, boolean recursive);}

⌨️ 快捷键说明

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