hashCode()
方法hashCode()方法在java.lang包中可用。
hashCode()方法用于返回Integer对象的哈希码。
hashCode()方法是一种非静态方法,仅可通过类对象访问,如果尝试使用类名称访问该方法,则会收到错误消息。
hashCode()方法在返回哈希码时不会引发异常。
语法:
public int hashCode();
参数:
它不接受任何参数。
返回值:
此方法的返回类型为int,它返回此对象的哈希码。
示例
//Java程序演示示例 //类的inthashCode()方法的说明 public class HashCodeOfIntegerClass { public static void main(String[] args) { //变量初始化 int value1 = 30; int value2 = 10; //它返回此Integer i1对象表示的哈希码值 //通过调用i1.hashCode() Integer i1 = new Integer(value1); //显示i1结果 System.out.println("i1.hashCode(): " + i1.hashCode()); //它返回此Integer i2对象表示的哈希码值 //通过调用i2.hashCode() Integer i2 = new Integer(value2); //显示i2结果 System.out.println("i2.hashCode(): " + i2.hashCode()); } }
输出结果
i1.hashCode(): 30 i2.hashCode(): 10