์ผ | ์ | ํ | ์ | ๋ชฉ | ๊ธ | ํ |
---|---|---|---|---|---|---|
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 |
- AVAudioPlayer
- ์๊ณ ๋ฆฌ์ฆ
- String.Index
- UIRefreshController
- ํ๋ก๊ทธ๋๋จธ์ค
- map
- components
- MongoDB
- ์ฑ๋์์ธ
- ์ฑ๋ง๋ค๊ธฐ
- mongoose
- ์ง๋ฒ๋ณํ
- Firestore
- Codable
- Figma
- Decodable
- ExpressJS
- Filter
- SWiFT
- CRUD
- RxSwift
- Mac
- Core Data
- Cloud Firestore
- Reduce
- DispatchQueue
- Firestore CRUD
- ios
- nodejs
- Encodable
- Today
- Total
Focus On Develop ๐ค๐ค
[Swift] AssociatedType ๋ณธ๋ฌธ
์๋ ํ์ธ์ ๐ ์ค๋์ AssociatedType์ ๋ํด์ ์์๋ณผ๊ฑฐ์์!
๋ง ๊ทธ๋๋ก ๊ด๋ จ๋ ํ์ ..? ์ฐ๊ด๋ ํ์ ..? ๊ทธ๋ฐ๊ฑด๋ฐ, ์ฌ์ค์ Generic์์ placeholder ํ์ ๊ฐ์๊ฑฐ์์!!
๋ฌด์จ๋ง์ด๋.. ์์๋ฅผ ๋ค์ด์ ๋ด ์๋ค์!!
protocol Appendable {
var collection: [String] { get set }
func append(_ item: String)
}
class StringArray: Appendable {
var collection: [String] = []
func append(_ item: String) {
collection.append(item)
}
}
Appendable์ด๋ผ๋ ์ด๋ค Array์ ๋ฐ์ดํฐ๋ฅผ ์ถ๊ฐํ ์ ์๋ ๊ธฐ๋ฅ์ ๊ฐ์ง protocol์ด ์์ด์.
์ด Appendable์ด๋ผ๋ ํ๋กํ ์ฝ์ ์ฑํํ๋ StringArray๋ผ๋ classํ์ ์์, ํ๋กํ ์ฝ์ ์ค์ํ๋ต์๊ณ ๋ฉ์๋์ ํ๋กํผํฐ๋ฅผ ์ ์ํด์ฃผ๋๋ฐ์!
์ฐ๋ฆฌ๊ฐ ํ๋กํ ์ฝ์ ์ฐ๋ฉด์ ์ํ๋๊ฑด ์ด๊ฒ ์๋๊ฒ ์ฃ ~?
class IntArray: Appendable {
var collection: [Int] = []
func append(_ item: Int) {
collection.append(item)
}
}
์ด๋ฐ๊ฒ๋ ๊ฐ์ด ์ฐ๊ณ ์ถ์์์~~~ ๐
๊ทผ๋ฐ ์ง๊ธ ์ํ๋ก๋ฉด IntArray๋ ์๋ฌ๋ฅผ ์ถ๋ ฅํ ๊ฑฐ์์. Intํ์ ์ ๋ค๋ฃฐ ์ ์๋ ๊ธฐ๋ฅ์ด Appendable ํ๋กํ ์ฝ์๋ ์๊ธฐ ๋๋ฌธ์ด์์.
์ด๋!! ์ธ ์ ์๋๊ฒ ๋ฐ๋ก associatedType ์ด์์.
protocol Appendable {
associatedtype SomeType
var collection: [SomeType] { get set }
func append(_ item: SomeType)
}
์ฒ์์ associatedtype์ ์๊ฐํ ๋ ์ด๋ค Generic์ Placeholder๊ฐ์๊ฑฐ๋ผ๊ณ ํ์ฃ ~? ์ด๋ ๊ฒ์!!
"์ด๋ค ํ์ ์ด๋ ์๊ด์์ด~ ์ฌ์ฉํ ๋๋ง ๋ช ์ํด์ฃผ๋ฉด ๋ผ"
class StringArray: Appendable {
var collection: [String] = []
func append(_ item: String) {
collection.append(item)
}
}
class IntArray: Appendable {
var collection: [Int] = []
func append(_ item: Int) {
collection.append(item)
}
}
๊ทธ๋ฌ๋ฉด ์ฐ๋ฆฌ๊ฐ ์ํ๋ ์ด๋ฐ๊ฒ ๊ฐ๋ฅํ๊ฒ ๋์!!
๊ทผ๋ฐ ํ๋กํ ์ฝ์ ์ ์ํด์ผ ํ ํ๋กํผํฐ๋ ๋ฉ์๋๊ฐ ๋ง์ผ๋ฉด.. ๊ทธ๋ ํ๋ํ๋ Int, String ์ณ์ค๊ฑด๊ฐ์~~?
์ฐ๋ฆฌ๋ ์๋์์ฑ์ ๋ ์ฌ์ฉํด์ผ ํ์์์! ๐ง๐ป
class StringArray: Appendable {
typealias SomeType = String
var collection: [String]
func append(_ item: String) {
<#code#>
}
}
๋จผ์ ํ๋ํ๋ ์ ์ํ๊ธฐ ์ ์, typealias๋ฅผ ํตํด placeholder๋ก ์ด๋ค ํ์ ์ ์ธ๊ฑด์ง๋ฅผ ์ ์ํด๋ฒ๋ฆฌ๋๊ฑฐ์์!
๊ทธ๋ฌ๋ฉด ํ๋กํ ์ฝ์ ์ค์ํ๊ธฐ ์ํด ํ๋กํผํฐ๋ ๋ฉ์๋๋ฅผ ์ ์ํ ๋, ์ด๋ ๊ฒ ์ ์ํ ํ์ ๋๋ก ์๋์์ฑ์ด ๋๋ต๋๋ค~
associatedtype์ ์ด๋ ๊ฒ ์ค์ ์ฌ์ฉํ ํ์ ์ ์ ์ํ๊ธฐ ์ ๊น์ง ์ง์ ๋์ง ์์ผ๋ ๋ฒ์ฉ์ ์ผ๋ก ์ฌ์ฉํ ์ ์๋๋ก ํด์ฃผ๋ ์น๊ตฌ์ ๋๋ค!
์ค๋๋ ๋๊ตฐ๊ฐ์๊ฒ ๋์์ด ๋์๊ธธ ๋ฐ๋์ ๐
'iOS [Swift] > ๊ธฐ์ด๋ฅผ ํํํ!' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[Swift] Realm ํ์ผ ๊ฒฝ๋กํ์ธ (0) | 2022.10.02 |
---|---|
[Swift] UITextField ํ๊ธ ๊ธ์์ ์ ํ (1) | 2021.10.26 |
[Swift] Error Handling (0) | 2021.07.27 |
[Swift] Bento #1. iPhone ์ฐ๋ฝ์ฒ ๊ฐ์ ธ์ค๊ธฐ (0) | 2021.04.27 |
[RxSwift] Subject (0) | 2021.03.30 |