字符串缓冲区
Posted 2734156755z
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了字符串缓冲区相关的知识,希望对你有一定的参考价值。
StringBuffer类
定义:
–只创建一个对象
–StringBuffer 对象的内容是可以被修改的
–除了字符的长度之外,还有容量的概念
–通过动态改变容量的大小,加速字符管理
代码实现:
1 public class Demo01 {
2 public static void main(String[] args) {
3 StringBuffer buffer=new StringBuffer("you");
4 StringBuffer buffer1=new StringBuffer();
5 //System.out.println(buffer1);
6 //可以连环调用
7 //you are bueautifultrue5.2
8 buffer.append(" are").append(" bueautiful").append(true).append(5.2);
9 //youre bueautifultrue5.2
10 buffer.delete(3, 5).delete(3, 5);//包头不包尾
11 //you bueautifultrue5.2
12 //插入字符串
13 //you are bueautifultrue5.2
14 buffer.insert(4, "are ");
15 //替换指定字符串
16 buffer.replace(0, 3, "She");//包头不包尾
17 //反转
18 buffer.reverse();
19 //转成字符串
20 String str=buffer.toString();
21 System.out.println(buffer);
22
23 }
24 }
以上是关于字符串缓冲区的主要内容,如果未能解决你的问题,请参考以下文章