java charAt()

canyi·2023년 6월 16일
0

java m1

목록 보기
19/40
public class ex_string {
    public static void main(String[] args) {

        String s = "abc";

        for (int i = 0; i < s.length(); i++){
            System.out.println(s.charAt(i));
        }

    }
}

String을 배열로 출력

System.out.println(s.charAt(i));

charAt 클릭할 경우 확인하면 string이 아닌 char type인걸 확인할수 있음

profile
백엔드 개발 정리

0개의 댓글