Uses of Class
com.sun.jdi.IncompatibleThreadStateException
-
Packages that use IncompatibleThreadStateException 软件包 描述 com.sun.jdi 这是Java调试接口(JDI)的核心包,它定义了值,类型和目标VirtualMachine本身的镜像 - 以及引导工具。 -
-
Uses of IncompatibleThreadStateException in com.sun.jdi
Methods in com.sun.jdi that throw IncompatibleThreadStateException 变量和类型 方法 描述 ObjectReference
ThreadReference. currentContendedMonitor()
返回此线程当前正在等待的监视器(如果有)的ObjectReference
。int
ObjectReference. entryCount()
返回当前拥有线程输入此对象监视器的次数。void
ThreadReference. forceEarlyReturn(Value value)
强制方法在到达return语句之前返回。StackFrame
ThreadReference. frame(int index)
返回线程当前调用堆栈中给定索引处的StackFrame
。int
ThreadReference. frameCount()
返回线程当前调用堆栈中的堆栈帧数。List<StackFrame>
ThreadReference. frames()
返回包含线程当前调用堆栈中每个StackFrame
的List。List<StackFrame>
ThreadReference. frames(int start, int length)
返回一个List,其中包含来自线程当前调用堆栈的StackFrame
个镜像范围。Value
ClassType. invokeMethod(ThreadReference thread, 方法 method, List<? extends Value> arguments, int options)
在目标VM中调用指定的静态方法
。default Value
InterfaceType. invokeMethod(ThreadReference thread, 方法 method, List<? extends Value> arguments, int options)
在目标VM中调用指定的静态方法
。Value
ObjectReference. invokeMethod(ThreadReference thread, 方法 method, List<? extends Value> arguments, int options)
在目标VM中的此对象上调用指定的方法
。ObjectReference
ClassType. newInstance(ThreadReference thread, 方法 method, List<? extends Value> arguments, int options)
使用目标VM中的给定构造函数方法
构造此类型的新实例。List<ObjectReference>
ThreadReference. ownedMonitors()
为线程拥有的每个监视器返回包含ObjectReference
的List。List<MonitorInfo>
ThreadReference. ownedMonitorsAndFrames()
返回包含该线程拥有的每个监视器的MonitorInfo
对象的List。ThreadReference
ObjectReference. owningThread()
返回当前拥有此对象监视器的线程(如果有)的ThreadReference
。void
ThreadReference. popFrames(StackFrame frame)
流行堆栈帧。List<ThreadReference>
ObjectReference. waitingThreads()
返回包含当前等待此对象监视器的每个线程的ThreadReference
的List。
-