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 Modifier and Type 接口 描述 interface
ArrayType
提供对数组类的访问及其在目标虚拟机中的组件类型。interface
BooleanType
在目标VM中访问的所有原始boolean
类型。interface
ByteType
在目标VM中访问的所有原始字节值的类型。interface
CharType
在目标虚拟机中访问的所有原始字符值的类型。interface
ClassType
目标VM中的类的镜像。interface
DoubleType
在目标VM中访问的所有原始双值的类型。interface
FloatType
在目标VM中访问的所有原始浮点值的类型。interface
IntegerType
在目标虚拟机中访问的所有原始int
类型。interface
InterfaceType
目标虚拟机中的接口的镜像。interface
LongType
在目标VM中访问的所有原语long
值的类型。interface
PrimitiveType
与目标VM中的非对象值相关联的类型。interface
ReferenceType
目标虚拟机中对象的类型。interface
ShortType
在目标VM中访问的所有原始short
类型。interface
VoidType
在目标虚拟机中访问的所有原始void
类型为void
。Methods in com.sun.jdi that return Type Modifier and 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 Modifier and Type 方法 描述 List<Type>
Method. argumentTypes()
返回一个包含此方法的每个形式参数类型的列表。
-