일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 러닝타이머
- 한국어 개인정보처리방침
- MKMapItem
- xcode로 날씨앱 만들기
- 클로저의 캡슐화
- Required Reason API
- AnyObject
- Xcode
- dispatchsource
- 단일 책임원칙
- RunningTimer
- font book
- App Store Connect
- Protocol
- weak var
- CLLocationManagerDelegate
- 영문 개인정보처리방침
- Startign Assignments
- CoreLocation
- 러닝기록앱
- SwiftUI Boolean 값
- swift
- 서체관리자
- weatherKit
- MKMapViewDelegate
- addannotation
- UIAlertAction
- UICollectionViewFlowLayout
- Timer
- WeatherManager
- Today
- Total
VesselWheel
[SwiftUI] Type 의 별칭 == Typealias 본문
import UIKit
// Type
// typealias 타입별칭 = 원래타입
let latitude: Double = 45.68
let longitude: Double = 87.21
type(of: latitude)
type(of: longitude)
typealias Coordinate = Double
let lat: Coordinate = 12.34
let lon: Coordinate = 56.78
type(of: lat)
type(of: lon)
// 연산자 : operator
// 일항(unary)연산자
// 이항(binary)연산자
// 삼항(ternary)연산자
// ㄴ 값1 ? 값2 : 값3
// 연산자 우선순위
// 산술연산자 -> 비교연산자 -> 논리연산자
// 연산의 방향 : 왼쪽 -> 오른쪽
// 할당연산자 : 오른쪽 -> 왼쪽
// 덧셈연산자
// 일항연산자로 사용하는 경우
// +(양수) / -(음수)
let num1 = 10
+num1
-num1
// +=(증가연산자) / -=(감소연산자)
var num2 = 10
num2 += 1
num2 = num2 + 1
num2 -= 1
num2 = num2 - 1
num2 *= 2
num2 = num2 * 2
num2 /= 2
num2 = num2 / 2
// 이항연산자
var num3 = 10
var num4 = 8
var result = num3 + num4
result = num3 - num4
result = num3 * num4
// 10 나누기 8 은 1.25 이지만
// num3, num4 는 Int type 이라서
// 소숫점 이하를 표현하지 못함
result = num3 / num4
let num5 = Double(num3)
let num6 = Double(num4)
var result2: Double
result2 = num5 / num6
// 나머지 연산자 (remainder operator)
// (modulo operator)
// 몫
result = num3 / num4
// 나머지
result = num3 % num4
// 실수에서 나머지 연산하는 경우
// truncatingRemainder() 를 사용함
num5.truncatingRemainder(dividingBy: num6)
// Overflow
// 지정한 type 보다 큰 값을 할당할 수 없음
// let number: Int8 = 9 * 9 * 9
let number: Int = 9 * 9 * 9
'Xcode Study' 카테고리의 다른 글
[SwiftUI] 비교연산자, 논리연산자 (0) | 2023.04.24 |
---|---|
[SwiftUI]SwiftUI의 특징 : Overflow Operators (0) | 2023.04.24 |
[SwiftUI] Type Conversion & Type Casting의 개념 (0) | 2023.04.24 |
[SwiftUI] Type의 성격 중 Type Safety (0) | 2023.04.24 |
[SwiftUI] 변수의 추론 : type(of:number) (0) | 2023.04.24 |