这篇文章上次修改于 2247 天前,可能其部分内容已经发生变化,如有疑问可询问作者。 本来准备用用户的邮箱生成唯一邀请码,但是发现java中String的hashCode并不唯一。 class Main { public static void main(String[] args) { String a = new String("FB"); String b = new String("Ea"); System.out.println(a.hashCode()); System.out.println(b.hashCode()); } } 输出结果可以看这个链接 https://repl.it/repls/SameCloudyCgi
没有评论