-
public interface ThreadStartEvent extends Event
在目标虚拟机中通知新运行的线程。 新线程可能是调用
的结果,或者通过JNI将新线程附加到VM的结果。 该通知在新线程在执行开始之前一段时间生成。 由于这个时机,在接收到该事件之前可以接收线程的其他事件。 (值得注意的是,在线程初始化期间可能会发生Thread.start()
MethodEntryEvent
s和MethodExitEvent
)。在接收到此事件之前,VirtualMachine.allThreads()
也可能返回一个新的启动线程。请注意,此事件不提供关于可能发生得更早的线程对象的创建的信息,具体取决于正在调试的VM。
- 从以下版本开始:
- 1.3
- 另请参见:
-
EventQueue
,VirtualMachine
,ThreadReference
-
-
方法摘要
所有方法 接口方法 抽象方法 Modifier and Type 方法 描述 ThreadReference
thread()
返回已经启动的线程。-
Methods inherited from interface com.sun.jdi.Mirror
toString, virtualMachine
-
-
-
-
方法详细信息
-
thread
ThreadReference thread()
返回已经启动的线程。- 结果
-
a
ThreadReference
which mirrors the event's thread in the target VM.
-
-