public class Sample {
public static void main(String[] args) {
String[] arr = {"A","B","C","D"};
// for 문 활용
String s = "";
for (String str : arr) {
s += str;
}
System.out.println(s);
// ABCD
// String.join 활용
String str = String.join("", arr);
System.out.println(str);
// ABCD
}
}
자바에서 ABCD가 들어있는 배열 arr을 String 타입의 값에 모두 넣어주려면 두 방법이 있는데
for문을 사용할 경우에는 정직하게 넣어주면 끝이고
String.join을 사용해주면 String.join(“”, 배열명) 으로 넣어줄 수 있다
join 메소드에서 “”는 배열 내용을 붙일 때 사용하는 것이기 때문에 1을 넣어주면
A1B1C1D 이런 식으로 들어가게 된다
Leave a Reply