개인적인 정리

java 에서 switch 본문

전자정부표준프레임워크

java 에서 switch

yeon.Biju 2021. 8. 26. 10:33

switch 문 예제

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
int logLevel =0;
 
switch (logLevel) {
    case 1:
        System.out.println("로그레벨1");
        break;
    case 2:
        System.out.println("로그레벨2");
        break;
    case 3:
        System.out.println("로그레벨3");
        break;
    default:
        break;
}
cs

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
String siteNm ="";
 
switch (siteNm) {
    case "대표":
        System.out.println("대표");
        break;
    case "영어":
        System.out.println("영어");
        break;
    case "기타":
        System.out.println("기타");
        break;
    default:
        break;
}
 
cs

 

 

 

 

Comments