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

📄 vm_client.java~1~

📁 Java源码
💻 JAVA~1~
字号:

/**
 * Created by IntelliJ IDEA. User: yellowicq Date: 2004-4-27 Time: 12:45:25
 * To change this template use File | Settings | File Templates.
 */
import java.io.IOException;

class VM_Client {
    static public void main(String[] args) throws IOException {
        Stream targetCode = new Stream(args[0]);
        VM_Factory factory = new VM_Factory();
        AbstractMachineState machine = new AbstractMachineState(factory);
        machine.Init(targetCode);
        machine.Transition();
    }

    /** @link dependency */
    /*# AbstractMachineState lnkAbstractMachineState; */
}

⌨️ 快捷键说明

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