-
public interface VMStartEvent extends Event
通知初始化目标虚拟机。 在主线程启动之前以及执行任何应用程序代码之前接收到此事件。 在此事件发生之前,大量的系统代码已经执行,并且已经加载了多个系统类。 此事件始终由目标VM生成,即使未明确请求。- 从以下版本开始:
- 1.3
- 另请参见:
-
VMDeathEvent
,EventQueue
,VirtualMachine
-
-
方法摘要
所有方法 接口方法 抽象方法 Modifier and Type 方法 描述 ThreadReference
thread()
返回已启动的VM的初始线程。-
Methods inherited from interface com.sun.jdi.Mirror
toString, virtualMachine
-
-
-
-
方法详细信息
-
thread
ThreadReference thread()
返回已启动的VM的初始线程。- 结果
-
a
ThreadReference
which mirrors the event's thread in the target VM.
-
-