当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Java.lang.System.identityHashCode()用法及代码示例



描述

这个java.lang.System.identityHashCode() 方法返回给定对象的哈希码与默认方法返回的哈希码相同hashCode().空引用的哈希码为零。

声明

以下是声明java.lang.System.identityHashCode()方法

public static int identityHashCode(Object x)

参数

x─ 这是要计算 hashCode 的对象。

返回值

此方法返回哈希码。

异常

NA

示例

下面的例子展示了 java.lang.System.identityHashCode() 方法的用法。

package com.tutorialspoint;

import java.lang.*;
import java.io.*;

public class SystemDemo {

   public static void main(String[] args) throws Exception {

      File file1 = new File("amit");
      File file2 = new File("amit");
      File file3 = new File("ansh");

      // returns the HashCode
      int ret1 = System.identityHashCode(file1);
      System.out.println(ret1);

      // returns different HashCode for same filename
      int ret2 = System.identityHashCode(file2);
      System.out.println(ret2);

      // returns the HashCode    
      int ret3 = System.identityHashCode(file3);
      System.out.println(ret3);
   }
}

让我们编译并运行上面的程序,这将产生以下结果——

355165777
1414159026
1569228633

相关用法


注:本文由纯净天空筛选整理自 Java.lang.System.identityHashCode() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。