这是我在论坛上的第一篇文章,希望大家一切都好。
我在使用 Eclipse 中的 Java 临时模拟器 JiST/SWANS 时遇到了问题。
我设法加载了 API(当然作为外部 JAR),但我基本上在 eclipse 中集成 JiST 的运行时时遇到了问题。运行 hello world 后,我通常会收到 stackoverflowerror 异常,因为它可能需要在运行时进行修改。
import jist.runtime.JistAPI;
public class hello implements JistAPI.Entity {
/**
* @param args
*/
public static void main(String[] args) {
System.out.println("simulation start");
hello t = new hello();
t.myEvent();
}
public void myEvent()
{
JistAPI.sleep(1);
myEvent();
System.out.println("hello world, t=" + JistAPI.getTime());
}
}
该网站是:http: //jist.ece.cornell.edu/index.html
先感谢您!