일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- CLLocationManagerDelegate
- RunningTimer
- UICollectionViewFlowLayout
- MKMapItem
- App Store Connect
- 러닝타이머
- xcode로 날씨앱 만들기
- swift
- WeatherManager
- font book
- UIAlertAction
- 러닝기록앱
- weatherKit
- addannotation
- weak var
- 영문 개인정보처리방침
- 서체관리자
- Timer
- Xcode
- Protocol
- AnyObject
- Startign Assignments
- dispatchsource
- MKMapViewDelegate
- 단일 책임원칙
- 클로저의 캡슐화
- CoreLocation
- SwiftUI Boolean 값
- 한국어 개인정보처리방침
- Required Reason API
- Today
- Total
VesselWheel
[SwiftUI] Type의 성격 중 Type Safety 본문
import UIKit
// Type Safety
// 적절한 type 으로 값을 처리하기 위해서
// type을 엄격하게 지킴
// 지정한 type에 맞는 값만 할당해야 함
// let str1: String = 123
let str1: String = "123"
// Int type 변수에 실수를 할당하지 못함
// let num1: Int = 3.14
// num2 나 num3 나 모두 Int type
// 이지만 값을 저장하는 공간의 크기가 달라서 num2 를 num3에 할당하지 못함
let num2 = 23
type(of: num2)
// let num3: Int8 = num2
let num4 = 12
let num5 = 23.45
// Int type과 Double type을
// 같이 연산하지 못함
// let result = num4 + num5
let rate = 2.34
let amount = 10_000_000
// Int type과 Double type을
// 같이 연산하지 못함
// type을 같게 해 주어야 함
// let result = rate * amount
// Double(amount) : Int type 인
// amount 를 Double type 으로 형변환함
let result = rate * Double(amount)
type(of: result)
// 결괏값을 Int type 으로 형변화하기
// result : Double --> Int
Int(result)
Int(rate * Double(amount))
// rate 는 Double type 으로서
// 소숫점 이하 값을 표현할 수 있는데
// 이를 Int type 으로 형변환하면
// 소숫점 이하 값을 표현하지 못하는
// 형태가 되어서 정수부분만 표현함
Int(rate) * amount
'Xcode Study' 카테고리의 다른 글
[SwiftUI] Type 의 별칭 == Typealias (0) | 2023.04.24 |
---|---|
[SwiftUI] Type Conversion & Type Casting의 개념 (0) | 2023.04.24 |
[SwiftUI] 변수의 추론 : type(of:number) (0) | 2023.04.24 |
[SwiftUI] Bool(Boolean) 타입의 개념 (0) | 2023.04.24 |
[SwiftUI] Float and Double 타입 개념 (0) | 2023.04.24 |