본문 바로가기

Swift

Swift 정리 - where절

where절 사용

 

var temperature = 60 switch (temperature)
{
case 0...49 where temperature % 2 == 0:
print("Cold and even")
case 50...79 where temperature % 2 == 0:
print("Warm and even")
case 80...110 where temperature % 2 == 0:
print("Hot and even")
default:
print("Temperature out of range or odd")
}
 

var numbers: [Int] = [1, 2, 3, 4, 5]

for num in numbers where num > 2 {

    print(num) //3 4 5

}

 

'Swift' 카테고리의 다른 글

Swift 정리 : 함수와 메서드(method)  (1) 2022.10.04
Swift 정리 : fallthrough문  (0) 2022.10.04
Swift 정리 : switch-case문  (1) 2022.10.04
Swift 정리 : guard문  (0) 2022.10.04
Swift 정리 : 제어문  (0) 2022.09.27