阅读量:0
在Java中,字符串拼接有多种方式,下面是一些常用的方法:
- 使用“+”运算符:
String str1 = "Hello, "; String str2 = "world!"; String result = str1 + str2; System.out.println(result); // 输出:Hello, world!
- 使用String的concat()方法:
String str1 = "Hello, "; String str2 = "world!"; String result = str1.concat(str2); System.out.println(result); // 输出:Hello, world!
- 使用StringBuilder类:
StringBuilder sb = new StringBuilder(); sb.append("Hello, "); sb.append("world!"); String result = sb.toString(); System.out.println(result); // 输出:Hello, world!
- 使用StringBuffer类:
StringBuffer sb = new StringBuffer(); sb.append("Hello, "); sb.append("world!"); String result = sb.toString(); System.out.println(result); // 输出:Hello, world!
这些都是常用的字符串拼接方法,选择合适的方法取决于具体的需求和场景。StringBuilder和StringBuffer类通常用于大量拼接操作,因为它们是可变的,不会产生大量的临时对象。而“+”运算符和concat()方法适用于少量的拼接操作。