java String类型的数据与基本数据类型作比较,Long类型的比较

  • Post author:
  • Post category:java


String类型的数据与基本数据类型用euqals方法作比较时候,返回的都是false;

基本类型long,用==直接比较内容大小

包装类型Long,自动装箱的时候调用Long.valueOf()方法,将long转成Long,如果是-128到127的范围内,取缓存。

	public static void main(String[] args) throws Exception {
		
		long l = 5;
		System.out.println("5".equals(l));//false
		System.out.println(5==l);//true
		
		long x = 200;
		System.out.println("200".equals(x));//false
		System.out.println(200==x);//true
		
		
		//-128 到 127 取缓存
		Long l1 = 100l;
		Long l2 = 100l;
		System.out.println(l1==l2);//true
	    
		Long l3 = 200l;
		Long l4 = 200l;
		System.out.println(l3==l4);//false
				
	
	}

查看String.equals的源码

发现如果比较的类型不是String就直接返回false

public boolean equals(Object anObject) {
        if (this == anObject) {
            return true;
        }
        if (anObject instanceof String) {
            String anotherString = (String)anObject;
            int n = value.length;
            if (n == anotherString.value.length) {
                char v1[] = value;
                char v2[] = anotherString.value;
                int i = 0;
                while (n-- != 0) {
                    if (v1[i] != v2[i])
                        return false;
                    i++;
                }
                return true;
            }
        }
        return false;
    }

Long.valueOf的源码

    public static Long valueOf(long l) {
        final int offset = 128;
        if (l >= -128 && l <= 127) { // will cache
            return LongCache.cache[(int)l + offset];
        }
        return new Long(l);
    }



版权声明:本文为xldmx原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。