码迷,mamicode.com
首页 > 其他好文 > 详细

HashCode补充

时间:2017-02-05 23:54:42      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:[]   new   string   style   hello   print   内容   也会   注意   

public class Demo4 {

    public static void main(String[] args) {
        String str1 = "hello";
        String str2 = new String("hello");
        System.out.println("两个是同一个对象吗?"+(str1==str2));
        System.out.println("str1的hashCode:"+ str1.hashCode());
        System.out.println("str2的hashCode:"+ str2.hashCode());
        /* 
         * HashCode默认情况下表示的是内存地址,String 类已经重写了Object的hashCode方法了。
             
             注意: 如果两个字符串的内容一致,那么返回的hashCode 码肯定也会一致的。 
             
         *
         */
    }
    
}

 

HashCode补充

标签:[]   new   string   style   hello   print   内容   也会   注意   

原文地址:http://www.cnblogs.com/xufengyuan/p/6368778.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!