Uses of Interface
com.sun.jdi.Type
-
Packages that use Type 软件包 描述 com.sun.jdi 这是Java调试接口(JDI)的核心包,它定义了值,类型和目标VirtualMachine本身的镜像 - 以及引导工具。 -
-
Uses of Type in com.sun.jdi
Subinterfaces of Type in com.sun.jdi 变量和类型 接口 描述 interface
ArrayType
提供对目标VM中阵列类及其组件类型的访问。interface
BooleanType
目标VM中访问的所有原始boolean
值的类型。interface
ByteType
目标VM中访问的所有原始字节值的类型。interface
CharType
目标VM中访问的所有原始char值的类型。interface
ClassType
目标VM中类的镜像。interface
DoubleType
目标VM中访问的所有原始double值的类型。interface
FloatType
目标VM中访问的所有原始浮点值的类型。interface
IntegerType
类型的所有图元的int
在目标VM访问值。interface
InterfaceType
目标VM中接口的镜像。interface
LongType
目标VM中访问的所有原始long
值的类型。interface
PrimitiveType
与目标VM中的非对象值关联的类型。interface
ReferenceType
目标VM中对象的类型。interface
ShortType
目标VM中访问的所有原始类型short
的类型。interface
VoidType
目标VM中访问的所有原始void
值的类型。Methods in com.sun.jdi that return Type 变量和类型 方法 描述 Type
ArrayType. componentType()
返回此数组的组件类型,如数组声明中所指定。Type
Method. returnType()
返回此方法声明中指定的返回类型。Type
Field. type()
返回此字段的类型。Type
LocalVariable. type()
返回此变量的类型。Type
Value. type()
返回此值的运行时类型。Methods in com.sun.jdi that return types with arguments of type Type 变量和类型 方法 描述 List<Type>
Method. argumentTypes()
返回一个列表,其中包含此方法的每个形式参数的类型。
-