내가 보려고 만든 자바 기본 문법 정리 -(3)

JM1107·2022년 11월 18일
0

1. Type 확인

String a = "Hello";
a.getClass().getName(); // String

2. int형 String으로 변환

int a = 100;
String b = a +"" ; //b = "100";

3.String형 int형으로 변환

String a = "100";
int b = Integer.parseInt(a); // b = 100;

4. String 단어별 Char형 변환

String a = "Hello";
a.charAt[0] // 'H' (char)

5. 배열 섞기

int[] a = {0,1,2,3};
        int j;
        int temp;

        for (int i = 3; i >=0 ; i--) {
            j = rd.nextInt(i+1);
            temp = a[i];
            a[i] = a[j];
            a[j] = temp;

        }
profile
개발자준비

0개의 댓글