📄 vm_client.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 + -