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 Modifier and Type 方法 描述 ObjectReference
ThreadReference. currentContendedMonitor()
返回一个ObjectReference
的监视器,如果有的话,这个线程当前正在等待。int
ObjectReference. entryCount()
返回此对象的显示器由当前拥有的线程输入的次数。void
ThreadReference. forceEarlyReturn(Value value)
强制一个方法在返回到返回语句之前返回。StackFrame
ThreadReference. frame(int index)
返回线程当前调用堆栈中给定索引的StackFrame
。int
ThreadReference. frameCount()
返回线程当前调用堆栈中的堆栈帧数。List<StackFrame>
ThreadReference. frames()
返回包含线程当前调用堆栈中的每个StackFrame
的列表。List<StackFrame>
ThreadReference. frames(int start, int length)
从线程的当前调用堆栈返回一个包含StackFrame
个镜像范围的列表。Value
ClassType. invokeMethod(ThreadReference thread, 方法 method, List<? extends Value> arguments, int options)
在目标虚拟机中调用指定的静态方法
。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)
在目标虚拟机中调用此对象上指定的方法
。ObjectReference
ClassType. newInstance(ThreadReference thread, 方法 method, List<? extends Value> arguments, int options)
构造此类型的新实例,使用给定的构造方法
目标VM。List<ObjectReference>
ThreadReference. ownedMonitors()
返回一个列表,包含线程拥有的每个监视器的一个ObjectReference
。List<MonitorInfo>
ThreadReference. ownedMonitorsAndFrames()
返回一个列表,包含线程拥有的每个监视器的一个MonitorInfo
对象。ThreadReference
ObjectReference. owningThread()
返回当前拥有该对象的监视器的线程(如果有)的ThreadReference
。void
ThreadReference. popFrames(StackFrame frame)
弹出框架。List<ThreadReference>
ObjectReference. waitingThreads()
返回一个列表,其中包含当前正在等待此对象的显示器的每个线程的ThreadReference
。
-