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

📄 vm_client.java

📁 Java源码
💻 JAVA
字号:
package AM.vm_impl.test;

/**
 * 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.*;

import AM.am_data_structure.*;
import AM.vm_impl.vm_data_structure.*;

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 + -