java字符串的哈希码_获取Java中字符串的哈希码

java字符串的哈希码_获取Java中字符串的哈希码该hashCode()方法用于获取字符串的哈希码。此方法不接受任何参数,因为它是默认方法,并且它返回哈希码值。hashCode()给出了演示Java方法的程序,如下所示:示例importjava.io.*;publicclassDemo{publicstaticvoidmain(Stringargs[]){Stringstr=newString(“Theskyisb…

该hashCode()方法用于获取字符串的哈希码。此方法不接受任何参数,因为它是默认方法,并且它返回哈希码值。

hashCode()给出了演示Java方法的程序,如下所示:

示例import java.io.*;

public class Demo {

public static void main(String args[]) {

String str = new String(“The sky is blue”);

System.out.println(“The string is: ” + str);

System.out.println(“The Hashcode for the string is: ” + str.hashCode());

}

}

输出结果The string is: The sky is blue

The Hashcode for the string is: -729257918

现在让我们了解上面的程序。

字符串str被定义。然后,使用该hashCode()方法打印字符串,并打印其HashCode 。演示此代码段如下:String str = new String(“The sky is blue”);

System.out.println(“The string is: ” + str);

System.out.println(“The Hashcode for the string is: ” + str.hashCode());

今天的文章java字符串的哈希码_获取Java中字符串的哈希码分享到此就结束了,感谢您的阅读。

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/8893.html

(0)
编程小号编程小号

相关推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注