求下面这hello.java程序的注释 小弟初学 希望各位多多帮助
import jist.runtime.JistAPI;class hello implements JistAPI.Entity
{
public static void main(String[] args)
{
System.out.println("simulation start");
hello h = new hello();
h.myEvent();
}
public void myEvent()
{
JistAPI.sleep(1);
myEvent();
System.out.println("hello world, t=" + JistAPI.getTime());
}
}