JAVA中StringBuffer类常用方法
String是不变类,用String修改字符串会新建一个String对象,如果频繁的修改,将会产生很多的String对象,开销很大.因此java提供了一个StringBuffer类,这个类在修改字符串方面的效率比String高了很多。
在java中有3个类来负责字符的操作。
1.Character 是进行单个字符操作的,
2.String 对一串字符进行操作。不可变类。
3.StringBuffer 也是对一串字符进行操作,但是可变类。
- public class UsingStringBuffer {
- /**
- * 查找匹配字符串
- */
- public static void testFindStr() {
- StringBuffer sb = new StringBuffer();
- sb.append("This is a StringBuffer");
- // 返回子字符串在字符串中最先出现的位置,如果不存在,返回负数
- System.out.println("sb.indexOf(\"is\")=" + sb.indexOf("is"));
- // 给indexOf方法设置参数,指定匹配的起始位置
- System.out.println("sb.indexOf(\"is\")=" + sb.indexOf("is", 3));
- // 返回子字符串在字符串中最后出现的位置,如果不存在,返回负数
- System.out.println("sb.lastIndexOf(\"is\") = " + sb.lastIndexOf("is"));
- // 给lastIndexOf方法设置参数,指定匹配的结束位置
- System.out.println("sb.lastIndexOf(\"is\", 1) = "
- + sb.lastIndexOf("is", 1));
- }
- /**
- * 截取字符串
- */
- public static void testSubStr() {
- StringBuffer sb = new StringBuffer();
- sb.append("This is a StringBuffer");
- // 默认的终止位置为字符串的末尾
- System.out.print("sb.substring(4)=" + sb.substring(4));
- // substring方法截取字符串,可以指定截取的起始位置和终止位置
- System.out.print("sb.substring(4,9)=" + sb.substring(4, 9));
- }
- /**
- * 获取字符串中某个位置的字符
- */
- public static void testCharAtStr() {
- StringBuffer sb = new StringBuffer("This is a StringBuffer");
- System.out.println(sb.charAt(sb.length() - 1));
- }
- /**
- * 添加各种类型的数据到字符串的尾部
- */
- public static void testAppend() {
- StringBuffer sb = new StringBuffer("This is a StringBuffer!");
- sb.append(1.23f);
- System.out.println(sb.toString());
- }
- /**
- * 删除字符串中的数据
- */
- public static void testDelete() {
- StringBuffer sb = new StringBuffer("This is a StringBuffer!");
- sb.delete(0, 5);
- sb.deleteCharAt(sb.length() - 1);
- System.out.println(sb.toString());
- }
- /**
- * 向字符串中插入各种类型的数据
- */
- public static void testInsert() {
- StringBuffer sb = new StringBuffer("This is a StringBuffer!");
- // 能够在指定位置插入字符、字符数组、字符串以及各种数字和布尔值
- sb.insert(2, 'W');
- sb.insert(3, new char[] { 'A', 'B', 'C' });
- sb.insert(8, "abc");
- sb.insert(2, 3);
- sb.insert(3, 2.3f);
- sb.insert(6, 3.75d);
- sb.insert(5, 9843L);
- sb.insert(2, true);
- System.out.println("testInsert: " + sb.toString());
- }
- /**
- * 替换字符串中的某些字符
- */
- public static void testReplace() {
- StringBuffer sb = new StringBuffer("This is a StringBuffer!");
- // 将字符串中某段字符替换成另一个字符串
- sb.replace(10, sb.length(), "Integer");
- System.out.println("testReplace: " + sb.toString());
- }
- /**
- * 将字符串倒序
- */
- public static void reverseStr() {
- StringBuffer sb = new StringBuffer("This is a StringBuffer!");
- System.out.println(sb.reverse()); // reverse方法将字符串倒序
- }
- }
小结:
StringBuffer不是不变类,在修改字符串内容时,不会创建新的对象,因此,它比String类更适合修改字符串。
StringBuffer类没有提供同String一样的toCharArray方法
StringBuffer类的replace方法同String类的replace方法不同,它的replace方法有三个参数,第一个参数指定被替换子串的起始位置,第二个参数指定被替换子串的终止位置,第三个参数指定新子串
JAVA中StringBuffer类常用方法的更多相关文章
- JAVA中StringBuffer类常用方法详解
String是不变类,用String修改字符串会新建一个String对象,如果频繁的修改,将会产生很多的String对象,开销很大.因此java提供了一个StringBuffer类,这个类在修改字符串 ...
- Java中StringBuffer类的常用方法
StringBuffer:StringBuffer类型 描述:在实际应用中,经常回遇到对字符串进行动态修改.这时候,String类的功能受到限制,而StringBuffer类可以完成字符串的动态添加. ...
- JAVA中String类常用方法 I
String类常用方法有: int length() -– 返回当前字符串的长度 int indexOf(int ch) -– 查找ch字符在该字符串中第一次出现的位置 int indexOf(Str ...
- Java中StringBuffer类
StringBuffer: 线程安全的可变字符串. StringBuffer和String的区别?前者长度和内容可变,后者不可变.如果使用前者做字符串的拼接,不会浪费太多的资源. StringBuff ...
- Java中StringBuffer类append方法的使用
public static void testAppend() { StringBuffer sb = new StringBuffer("This is a StringBuffer!&q ...
- Java中 ArrayList类常用方法和遍历
ArrayList类对于元素的操作,基本体现在——增.删.查.常用的方法有: public boolean add(E e) :将指定的元素添加到此集合的尾部. public E remove(in ...
- Java中String类常用方法(字符串中的子字符串的个数)
重点内容 4种方法: 1.int indexOf(String str)返回第一次出现的指定子字符串在此字符串中的索引. 2.int indexOf(String str, int startInde ...
- java中File类的常用方法总结
java中File类的常用方法 创建: createNewFile()在指定的路径创建一个空文件,成功返回true,如果已经存在就不创建,然后返回false. mkdir() 在指定的位置创建一个此抽 ...
- 【转】JAVA的StringBuffer类
[转]JAVA的StringBuffer类 StringBuffer类和String一样,也用来代表字符串,只是由于StringBuffer的内部实现方式和String不同,所以StringBu ...
随机推荐
- CodeForces 616D Longest k-Good Segment
用队列维护一下即可 #include<cstdio> #include<cstring> #include<queue> #include<algorithm ...
- css3盒模型学习--利用box自适应布局
box-flex是css3新添加的盒子模型属性,它的出现可以解决我们通过N多结构.css实现的布局方式.经典 的一个布局应用就是布局的垂直等高.水平均分.按比例划分. 目前box-flex属性还没 ...
- hibernate---一对一单向外键关联--XML
Student.java: package com.bjsxt.hibernate; public class Student { private int id; private String nam ...
- ZOJ 3940 Modulo Query
0--M对某个数字取模,相当于把0--M区间进行切割,每次暴力切割一下.结果的算的时候二分一下即可... 看了官方题解才会... #include<cstdio> #include< ...
- CodeForces 617E XOR and Favorite Number
莫队算法. #include<cstdio> #include<cmath> #include<cstring> #include<algorithm> ...
- sublime text 配置文件中文说明
原文地址:http://www.feelcss.com/sublime-text-2-settings.html // While you can edit this file, it's best ...
- mysql管理---表分区
一.什么是表分区 通俗地讲表分区是将一大表,根据条件分割成若干个小表.mysql5.1开始支持数据表分区了. 如:某用户表的记录超过了600万条,那么就可以根据入库日期将表分区,也可以根据所在地将表分 ...
- CodeForces 652B z-sort
先对序列排个序. 例如:1 2 3 4 5 6 7 我们把序列分成两半,前一半是1 2 3 4,后一半是5 6 7 然后,我们从前一半取最小的一个,再从后一半取最小的一个..一直操作下去就能构造出答案 ...
- List<KeyValuePair<TKey,TValue>> 与 Dictionary<TKey,TValue> 不同
两者都可以通过 KeyValuePair<TKey,TValue> 进行遍历,并且两者可以相互转换: List<KeyValuePair<string,string>&g ...
- java语法:字符串数组的赋值
字符串数组怎么赋值呢? 首先当然得先定义啦:String infoPack[] : 然后想当然的以为在for循环里,new一个数组, String infoPack[i] = imgurls; 事实证 ...