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

==和equasl

时间:2018-09-11 17:57:48      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:class   out   log   test   []   ring   equals   .com   www   

public class String01 {
public static void main(String[] args) {
String a="test";
String b=new String("test");
System.out.println(a==b);//false
System.out.println(a.equals(b));//true
}
}

具体参看:

https://www.cnblogs.com/Eason-S/p/5524837.html

==和equasl

标签:class   out   log   test   []   ring   equals   .com   www   

原文地址:https://www.cnblogs.com/shijinglu2018/p/9629054.html

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