StringBuffer类是java中的一个类,位于java.lang包中。该类用于提供可变的字符串,它的长度和内容可以随时改变。在字符串频繁变化的应用场景下,使用StringBuffer相较于直接操作String具有更好的性能表现。
StringBuffer sb = new StringBuffer("hello");
sb.append(" world");
System.out.println(sb); // 输出 "hello world"
StringBuffer sb = new StringBuffer("hello");
sb.insert(2, "ll");
System.out.println(sb); // 输出 "hello"
StringBuffer sb = new StringBuffer("hello world");
sb.delete(0, 5);
System.out.println(sb); // 输出 "world"
StringBuffer sb = new StringBuffer("hello world");
sb.replace(0, 5, "bye");
System.out.println(sb); // 输出 "bye world"
StringBuffer sb = new StringBuffer("hello");
sb.reverse();
System.out.println(sb); // 输出 "olleh"
StringTokenizer类位于java.util包中,主要用于分割字符串。该类是以指定的分割字符(包括多个字符)来分割字符串。与split()方法类似,但在某些复杂情况下,StringTokenizer类依然有其实用价值。
示例:
String str = "hello;world";
StringTokenizer st = new StringTokenizer(str, ";");
while (st.hasMoreTokens()) {
System.out.println(st.nextToken());
}
// 输出 "hello" 和 "world"
示例:
String str = "hello;world";
StringTokenizer st = new StringTokenizer(str, ";");
System.out.println(st.countTokens());
// 输出 2
以上是StringBuffer类与StringTokenizer类的常用方法说明。
示例1:使用StringBuffer类拼接字符串
String[] arr = {"hello", "world"};
StringBuffer sb = new StringBuffer();
for (String str : arr) {
sb.append(str);
}
System.out.println(sb.toString()); // 输出 "helloworld"
示例2:使用StringTokenizer类分隔字符串
String str = "hello,world|java";
StringTokenizer st = new StringTokenizer(str, ",|");
while (st.hasMoreTokens()) {
System.out.println(st.nextToken());
}
// 输出 "hello"、"world" 和 "java"
上述示例均为程序演示,仅供参考。