두 번째, concat이라는 메서드도 자주 사용합니다. concat은 문자열과 문자열을 결합하는 메서드입니다. 자, 앞에서 말한 대로 world를 결합해 출력해볼까요?
package javaStudy;
public class StringMethodExam {
public static void main(String[] args) {
String str = "hello";
System.out.println(str.length());
System.out.println(str.concat(" world"));
}
}
실행결과
5
hello world