📜  如何在java中增加字符(1)

📅  最后修改于: 2023-12-03 15:08:54.905000             🧑  作者: Mango

在Java中增加字符

在Java中,增加字符有多个方法。以下是其中一些方法:

1. 使用String中的方法

可以使用String类中的concat()方法,将要增加的字符连接到原字符串的末尾。

String str = "hello";
str = str.concat(" world");
System.out.println(str);  // 输出: "hello world"
2. 使用StringBuilder或StringBuffer中的方法

如果需要多次增加字符,推荐使用StringBuilder或StringBuffer类。可以使用append()方法,在原字符串的末尾添加一个字符。

StringBuilder sb = new StringBuilder("hello");
sb.append(" world");
System.out.println(sb.toString());  // 输出: "hello world"
3. 将字符数组或字符转换为字符串

可以将字符数组或字符转换为字符串,再使用方法1或2中的方法。

char c = '!';
String str1 = "hello";
String str2 = new String(new char[]{c});

str1 = str1.concat(str2);
System.out.println(str1);  // 输出: "hello!"

StringBuilder sb = new StringBuilder(str1);
sb.append(c);
System.out.println(sb.toString());  // 输出: "hello!!"

通过以上方法,可以在Java中增加字符。