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

String解析

时间:2014-11-07 16:16:13      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   ar   java   sp   div   on   2014   


String的比較有两种==和equals()方法:

==:比較的是在堆内存中地址

equals():比較的是值

String s1="hello";
String s2="hello";
String s3=new String("hello");

s1==s2;//结果为true
s1==s3;//结果为false
s1.equals(s2);//结果为true
s1.equals(s3);//结果为true


原理图:

bubuko.com,布布扣


String的内容不可改变:

public class StringDemo{
	public static void main(String args[]){
		String str = "hello" ;		// 声明字符串
		str = str + " world!!!"	;	// 改动字符串
		System.out.println("str = " + str) ;
	}
};


原理图:
bubuko.com,布布扣


经常用法:

bubuko.com,布布扣

bubuko.com,布布扣

String解析

标签:style   blog   http   ar   java   sp   div   on   2014   

原文地址:http://www.cnblogs.com/mengfanrong/p/4081310.html

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