'String'에 해당되는 글 1건
- 2008/01/13 String 클래스
클래스명 : String
========================================================================
메소드 : concat(String s)
설명 : 문자열 합치기
예제 :
String s1 = "abc";
String s2 = "def";
String s3 = s1.concat(s2);
System.out.println(s3);
출력: abcdef
========================================================================



Prev
Rss Feed