swift
-
swift) Initializationswift 2021. 6. 19. 16:29
역시 기초가 제일 중요하고, 어려운 것 같아요 😂오늘은 swift의 initialization에 대해 알아봅시다. Two-Phase Initialization https://docs.swift.org/swift-book/LanguageGuide/Initialization.html#ID220 Initialization — The Swift Programming Language (Swift 5.5) Initialization Initialization is the process of preparing an instance of a class, structure, or enumeration for use. This process involves setting an initial value for each st..
-
Collections Types - Setswift 2021. 4. 8. 00:30
swift의 collection type 중 하나인 Set에 대해서 알아봅시다! (오늘부터 존댓말하기로 함^^) https://docs.swift.org/swift-book/LanguageGuide/CollectionTypes.html#//apple_ref/doc/uid/TP40014097-CH8-ID484 Collection Types — The Swift Programming Language (Swift 5.4) Collection Types Swift provides three primary collection types, known as arrays, sets, and dictionaries, for storing collections of values. Arrays are ordered coll..