[IOS 로드맵] ternary
ternary
ternary operator 삼항 연산자로 쓰인다.
if문으로 여러줄로 쓰이는걸 한줄로 써서 심플하게 해논건데
삼항 연산자 사용하기
let number = 3
print(number > 5 ? "yes" : "no")
// number > 5가 조건이고 참이면 : 기준 왼쪽으로 아니면 오른쪽으로
// 즉 지금 print의 결과물은 no
let number = 3
if number > 5 {
print("yes")
} else {
print("no")
}
출처 : https://hongssup.tistory.com/43
Author And Source
이 문제에 관하여([IOS 로드맵] ternary), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@willis18/IOS-로드맵-ternary저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)