-
- All Superinterfaces:
-
Comparable<IntegerValue>
,Mirror
,PrimitiveValue
,Value
public interface IntegerValue extends PrimitiveValue, Comparable<IntegerValue>
提供对目标VM中的基元int
值的访问。- 从以下版本开始:
- 1.3
-
-
方法摘要
所有方法 接口方法 抽象方法 Modifier and Type 方法 描述 boolean
equals(Object obj)
将指定的Object与此IntegerValue进行比较以获得相等性。int
hashCode()
返回此IntegerValue的哈希码值。int
value()
将此IntegerValue返回为int。-
Methods inherited from interface java.lang.Comparable
compareTo
-
Methods inherited from interface com.sun.jdi.Mirror
toString, virtualMachine
-
Methods inherited from interface com.sun.jdi.PrimitiveValue
booleanValue, byteValue, charValue, doubleValue, floatValue, intValue, longValue, shortValue
-
-
-
-
方法详细信息
-
value
int value()
将此IntegerValue返回为int。- 结果
-
这个对象镜像的
int
。
-
equals
boolean equals(Object obj)
将指定的Object与此IntegerValue进行比较以获得相等性。- 重写:
-
equals
在Object
- 参数
-
obj
- 用于比较的参考对象。 - 结果
- 如果Object是IntegerValue,并且如果对两个镜像的原语应用“==”,则该值为true; 否则为假。
- 另请参见:
-
Object.hashCode()
,HashMap
-
hashCode
int hashCode()
返回此IntegerValue的哈希码值。- 重写:
-
hashCode
在Object
- 结果
- 整数哈希码
- 另请参见:
-
Object.equals(java.lang.Object)
,System.identityHashCode(java.lang.Object)
-
-