Uses of Interface
com.sun.jdi.StackFrame
-
Packages that use StackFrame 软件包 描述 com.sun.jdi 这是Java调试接口(JDI)的核心包,它定义了值,类型和目标VirtualMachine本身的镜像 - 以及引导工具。 -
-
Uses of StackFrame in com.sun.jdi
Methods in com.sun.jdi that return StackFrame 变量和类型 方法 描述 StackFrame
ThreadReference. frame(int index)
返回线程当前调用堆栈中给定索引处的StackFrame
。Methods in com.sun.jdi that return types with arguments of type StackFrame 变量和类型 方法 描述 List<StackFrame>
ThreadReference. frames()
返回包含线程当前调用堆栈中每个StackFrame
的List。List<StackFrame>
ThreadReference. frames(int start, int length)
返回一个List,其中包含来自线程当前调用堆栈的StackFrame
个镜像范围。Methods in com.sun.jdi with parameters of type StackFrame 变量和类型 方法 描述 boolean
LocalVariable. isVisible(StackFrame frame)
确定是否可以从给定的StackFrame
访问此变量。void
ThreadReference. popFrames(StackFrame frame)
流行堆栈帧。
-