티스토리 뷰
반응형
* Swift 비교 연산자
수의 기본적인 비교 연산은 타 언어와 다를게 없으므로 패스
문자열 비교 연산은 objective-c 의 [변수명 isEqualToString:@"비교문자열"] 처럼 쓸줄 알았는데
너무 심플해졌다.
let name = "world"
if name == "world" {
print("hello, world")
} else {
print("I'm sorry \(name), but I don't recognize you")
}
그냥 비교 연산자만 쓰면 된다.
또한 동시에 여러 변수를 if or 처럼 사용도 할수 있다.
(1, "zebra", 3) < (2, "apple", 2) // true because 1 is less than 2
(3, "apple") < (3, "bird") // true because 3 is equal to 3, and "apple" is less than "bird"
(3, "car") < (3, "bird") // false because "bird" is less than "car"
(4, "dog") == (4, "dog") // true because 4 is equal to 4, and "dog" is equal to "dog”
끝.
반응형
'Develope > Swift' 카테고리의 다른 글
스위프트 Arduino+HM10+릴레이 제어용 앱 (0) | 2016.06.13 |
---|---|
Swift 기초 - API 버전 확인방법 (0) | 2016.06.12 |
Swift 기초 - 조건문 ( 놓치면 안될것들 ) (0) | 2016.06.11 |
Swift 기초 - Optional 변수 (?) (0) | 2016.06.11 |
Swift 기초 - 반복문 ( for, for-in, while, repeat-while ) (0) | 2016.06.11 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 머신러닝
- object-C
- Deeplearning
- 공기청정기
- 사물인터넷
- 라즈베리파이
- ubuntu
- 아두이노
- php
- mysql
- ios
- 우분투
- IOT
- 강좌
- diy
- 인공지능
- 미세먼지
- Python
- Android
- OpenCV
- 딥러닝
- 엘라스틱서치
- 스위프트
- 캠핑
- xcode
- 아이폰
- 리눅스
- swift
- 파이썬
- 서버
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
글 보관함