當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。