클래스명 : String
========================================================================
메소드 : concat(String s)
설명 : 문자열 합치기
예제 :
String s1 = "abc";
String s2 = "def";
String s3 = s1.concat(s2);
System.out.println(s3);
출력: abcdef
========================================================================



Prev
Rss Feed