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


Java String hashCode()用法及代码示例



描述

此方法返回此字符串的哈希码。 String 对象的哈希码计算如下 -

s[0]*31^(n - 1) + s[1]*31^(n - 2) + ... + s[n - 1]

使用 int 算术,其中 s[i] 是字符串的第 i 个字符,n 是字符串的长度,^ 表示求幂。 (空字符串的哈希值为零。)

用法

这是此方法的语法 -

public int hashCode()

参数

这是参数的详细信息 -

  • 这是默认方法,不接受任何参数。

返回值

  • 此方法返回此对象的哈希码值。

示例

import java.io.*;
public class Test {

   public static void main(String args[]) {
      String Str = new String("Welcome to Tutorialspoint.com");
      System.out.println("Hashcode for Str:" + Str.hashCode() );
   }
}

这将产生以下结果 -

输出

Hashcode for Str:1186874997

相关用法


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