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

4-字符串

时间:2017-01-08 14:29:02      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:ring   stringbu   分析   int   alt   内存地址   img   uid   http   

1.直接赋值:string str= “hello”;

2.new(因为堆里面开辟了两块内存空间所以不常用):string str = new string();

3.str内容不可更改

例:string str1 = “hello”;

      system.out.println(str1 + “world”);

虽然打印出来的事helloworld,但是分析内存地址后发现改变的不是str1的”hello”的地址的内容,而是改的str1指向的重新开辟的“helloworld”的地址

4.比较:整形等可以用==。但是string需要用equal方法。(因为==是比较地址,equal是比较内容,而string是堆内存中的,整形是栈中的)

5.字符串常用方法见图片技术分享

 

6.stringbuffer常用方法见图片

技术分享

 

7.stringbuider常用方法见图片

 技术分享

 

4-字符串

标签:ring   stringbu   分析   int   alt   内存地址   img   uid   http   

原文地址:http://www.cnblogs.com/BelieveFish/p/6261853.html

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