-
- All Superinterfaces:
-
Event
,Locatable
,LocatableEvent
,Mirror
public interface MethodExitEvent extends LocatableEvent
在目标VM中返回方法的通知。 该事件在方法中的所有代码都已执行后生成,但此事件的位置是方法中最后执行的位置。 为本机和非本机方法生成方法退出事件。 如果方法以抛出的异常终止,则不会生成方法退出事件。- 从以下版本开始:
- 1.3
- 另请参见:
-
EventQueue
-
-
方法摘要
所有方法 接口方法 抽象方法 Modifier and Type 方法 描述 方法
method()
返回退出的方法。Value
returnValue()
返回该方法将返回的值。-
Methods inherited from interface com.sun.jdi.event.LocatableEvent
thread
-
Methods inherited from interface com.sun.jdi.Mirror
toString, virtualMachine
-
-
-
-
方法详细信息
-
method
方法 method()
返回退出的方法。- 结果
-
一个
方法
镜像退出的方法。 - 异常
-
ObjectCollectedException
- 如果类被垃圾回收,可能会抛出。
-
returnValue
Value returnValue()
- 结果
-
一个
Value
镜像要返回的值。 - 异常
-
UnsupportedOperationException
- 如果目标虚拟机不支持此操作 - 请参阅canGetMethodReturnValues()
- 从以下版本开始:
- 1.6
-
-