일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Xcode
- CoreLocation
- dispatchsource
- AnyObject
- swift
- 러닝기록앱
- addannotation
- WeatherManager
- SwiftUI Boolean 값
- font book
- UICollectionViewFlowLayout
- Required Reason API
- 클로저의 캡슐화
- 단일 책임원칙
- RunningTimer
- 영문 개인정보처리방침
- weak var
- MKMapItem
- 한국어 개인정보처리방침
- Startign Assignments
- UIAlertAction
- 서체관리자
- Timer
- xcode로 날씨앱 만들기
- 러닝타이머
- weatherKit
- MKMapViewDelegate
- App Store Connect
- Protocol
- CLLocationManagerDelegate
Archives
- Today
- Total
VesselWheel
[SwiftUI] Int(Integer)의 타입 본문
import UIKit
var greeting = "Hello, playground"
/*
Int(Integer) Type
Int8 : 8bit - 1byte
Int16 : 16bit - 2byte
Int32 : 32bit - 4byte
Int64 : 64bit - 8byte
*/
Int8.min
Int8.max
Int16.min
Int16.max
Int32.min
Int32.max
Int64.min
Int64.max
// Int8 type 의 data 를 저장할 때 필요한 byte 수
MemoryLayout<Int8>.size
MemoryLayout<Int16>.size
MemoryLayout<Int32>.size
MemoryLayout<Int64>.size
/*
Signed / Unsigned
(음수,양수). (양수만)
*/
UInt8.min
UInt8.max
UInt16.min
UInt16.max
UInt32.min
UInt32.max
UInt64.min
UInt64.max
// Int64 type 의 data 를 저장할 때 필요한 byte 수
MemoryLayout<Int>.size
Int.max
Int.min
let num = 123
print("num 의 type :",type(of:num))
'Xcode Study' 카테고리의 다른 글
[SwiftUI] Bool(Boolean) 타입의 개념 (0) | 2023.04.24 |
---|---|
[SwiftUI] Float and Double 타입 개념 (0) | 2023.04.24 |
[SwiftUI] 자료, 형태 개념 (0) | 2023.04.24 |
[SwiftUI] 변수, 구조체 등 이름 설정하기 (0) | 2023.04.24 |
[SwiftUI] 변수 선언(var, let) (0) | 2023.04.24 |