在Java中,concat方法用于将两个字符串连接起来,返回一个新的字符串。在使用concat方法时,可能会出现以下异常情况:
String str1 = "Hello";
String str2 = null;
if (str2 != null) {
String result = str1.concat(str2);
System.out.println(result);
} else {
System.out.println("Cannot concatenate null string");
}
String str1 = "Hello";
String str2 = "World";
StringBuilder sb = new StringBuilder(str1.length() + str2.length());
sb.append(str1).append(str2);
String result = sb.toString();
System.out.println(result);
3.其他异常:除了上述两种常见异常外,还可能出现其他运行时异常,如StringIndexOutOfBoundsException等。为了避免这些异常,可以在调用concat方法时进行异常处理,或者使用try-catch块捕获异常。
String str1 = "Hello";
String str2 = "World";
try {
String result = str1.concat(str2);
System.out.println(result);
} catch (Exception e) {
System.out.println("An error occurred: " + e.getMessage());
}