Swift์ ํ์ ์บ์คํ ์ ๋ํด ์์๋ณด์์. ๐
๋จผ์ ํด๋์ค์ ์์ ๊ฐ๋ ๋ถํฐ ์ดํดํ๊ณ ์์ด์ผ ํ๋๋ฐ......
์ด๋ ๊ฒ Coffee, Latte, Americano๋ผ๋ ํด๋์ค๊ฐ ์์ต๋๋ค. ์ฌ๊ธฐ์ ์ฐ๋ฆฌ๋ ๋ผ๋ผ์ ์๋ฉ๋ฆฌ์นด๋ ธ๋ฅผ ๋ฌถ์ด์ ์ปคํผ๋ผ๊ณ ๋ถ๋ฅด๊ธฐ๋ ํ์ฃ !??!?
์ปคํผ๋ผ๋ ๊ฐ๋ ์ ํฌํจํ๊ณ ์๋ ๋ผ๋ผ๋, ์ฌ๊ธฐ์์๋ ์ปคํผ๋ฅผ ์์๋ฐ์ ๋ผ๋ผ๊ฐ ํ์ํ๊ฒ ๋ฉ๋๋ค! ๋ง์ฐฌ๊ฐ์ง๋ก ์ปคํผ๋ผ๋ ๊ฐ๋ ์ ํฌํจํ๊ณ ์๋ ์๋ฉ๋ฆฌ์นด๋ ธ๋ ์์ฑ!
๊ทธ๋ฌ๋ฉด ์ปคํผ๋ ๋ถ๋ชจ Class, ๋ผ๋ผ์ ์๋ฉ๋ฆฌ์นด๋ ธ๋ ์์ Class๊ฐ ๋จ๋๋ค. '์ปคํผ'๋ '์ท'์ด๋ผ๋ ํญ๋ชฉ์ ๊ฐ๊ณ ์๊ณ , ์ด๋ฅผ ์์๋ฐ์ ์์๋ค์ธ ๋ผ๋ผ์ ์๋ฉ๋ฆฌ์นด๋ ธ๋ '์ท'์ด๋ผ๋ ํญ๋ชฉ์ ๊ฐ์ง๊ณ ์์ด๋๋ค~~ ์ด๊ฐ๋จ ์์ ๋!
class Coffee {
let shot: Int
init(shot: Int) {
self.shot = shot
}
}
class Latte: Coffee {
var flavor: String
init(flavor: String, shot: Int) {
self.flavor = flavor
super.init(shot: shot)
}
}
class Americano: Coffee {
let iced: Bool
init(shot: Int, iced: Bool) {
self.iced = iced
super.init(shot: shot)
}
}
๊ทธ๋ฌ๋ฉด ์ด์ '์ปคํผ' ํด๋์ค์ ์ธ์คํด์ค ๊ฑ ์ปคํผ, '๋ผ๋ผ' ํด๋์ค์ ์ธ์คํด์ค์ธ ๋ฐ๋๋ผ๋ผ๋ผ์, '์๋ฉ๋ฆฌ์นด๋ ธ' ํด๋์ค์ ์ธ์คํด์ค์ธ '์์ด์ค์๋ฉ๋ฆฌ์นด๋ ธ(aka ์์)'๋ฅผ ์์ฑํด ๋ณด๊ฒ ์๋๋ค.
let coffee: Coffee = Coffee(shot: 1)
let vanillaLatte: Latte = Latte(flavor: "vanilla", shot: 2)
let icedAmericano: Americano = Americano(shot: 3, iced: true)
์ ์ท ์ปคํผ, ํฌ ์ท ๋ฐ๋๋ผ๋ผ๋ผ, ์ฐ๋ฆฌ ์ท ์์๋ฅผ ์์ฑํ์! ์์์ ๋งํ๋ฏ 'shot' ์ด๋ผ๋ ๋ณ์๋ Latte ํด๋์ค์ Americano ํด๋์ค๊ฐ Coffee ํด๋์ค๋ฅผ ์์๋ฐ์๊ธฐ ๋๋ฌธ์ ์ ๋ ๊ฒ ์ฐ์ผ ์ ์์!
๐ is ์ฌ์ฉํ๊ธฐ
/// ๋ฐ์ดํฐ ํ์
ํ์ธ
print("coffee is Coffee ->", coffee is Coffee) // true
print("coffee is Americano ->", coffee is Americano) // false
print("coffee is Latte ->", coffee is Latte) // false
is๋ ๋ฐ์ดํฐ ํ์ ์ ํ์ธํ๋ ์ฐ์ฐ์์ ๋๋ค! <์ธ์คํด์ค> is <ํด๋์ค> ํํ๋ก ์ฌ์ฉํ๋๋ฐ, return ๊ฐ์ผ๋ก Boolean ํ์ ์ ๊ฐ์ ๋๋ ค ์ค๋๋ค. ์์ ์ฝ๋์์, ๋ถ๋ชจ ํด๋์ค Coffee์ ์ธ์คํด์ค์ธ ๊ฑ coffee๋ is Coffee๋ฅผ ํ์ ๋ true๋ฅผ ๋ฐ์ง๋ง, ์์ ํด๋์ค๋ก is Americano์ is Latte๋ฅผ ํ์ ๋ false๋ฅผ ๋ฐ์ต๋๋ค. ๋ถ๋ชจ ํด๋์ค๊ฐ ์์ ํด๋์ค์ธ ์ฒ์ ํ ์๋ ์๋ ๊ฒ ..
print("vanillaLatte is Coffee ->", vanillaLatte is Coffee) // true
print("vanillaLatte is Americano ->", vanillaLatte is Americano) // false
print("vanillaLatte is Latte ->", vanillaLatte is Latte) // true
print("icedAmericano is Coffee ->", icedAmericano is Coffee) // true
print("icedAmericano is Americano ->", icedAmericano is Americano) // true
print("icedAmericano is Latte ->", icedAmericano is Latte)// false
ํ์ง๋ง! ๋ฐ๋๋ผ๋ผ๋ผ์ ์์๋ ๋ถ๋ชจ ํด๋์ค์ธ Coffee๋ฅผ ์์๋ฐ์ ๋ง๋ Americano, Latte ํด๋์ค์ ์ธ์คํด์ค์ฃ !??!? ๋ถ๋ชจ์ฒ๋ผ shot์ด๋ผ๋ ๋ณ์๋ ๊ฐ๊ณ ์์ฃ !??!? ๊ทธ๋ฌ๋ฉด ๋ถ๋ชจ์ธ ์ฒ์ ํ ์ ์์ต๋๋ค!!!! vanillaLatte is Coffee๋ true๋ฅผ ๋ฐํํฉ๋๋ค!!! icedAmericano๋ ๋ง์ฐฌ๊ฐ์ง! ์ด๋ ๊ฒ ์์ ํด๋์ค๊ฐ ๋ถ๋ชจ ํด๋์ค์ธ ์ฒํ๋ ๊ฑธ ์ ์บ์คํ ์ด๋ผ๊ณ ํฉ๋๋ค~ '์ฒํ๋ค'๋ ๊ฒ์ ์ฐธ์กฐํ๋ค๋ ๊ฒ์ด์ ธ! ์์์ด ๋ถ๋ชจ์ธ ์ฒํ๋ ๊ฒ์ ํญ์ ์ฑ๊ณตํ๊ธฐ ๋๋ฌธ์, ์ ์บ์คํ ์ ํญ์ ์ฑ๊ณตํฉ๋๋ค!
๋ ํ์ง๋ง... Latte ํด๋์ค๋ง์ด ๊ฐ๊ณ ์์ ์ ์๋ flavor๋ผ๋ ํน์ง์ Americano๊ฐ ๊ฐ์ง๊ณ ์์ ์ ์๋ฏ(์๋ญ...ํค์ด์ฆ๋์์๋ผ๋๊ฐ ์ด๋ฐ๊ฑด ๋ง๊ณ ...) ์์๋ผ๋ฆฌ๋ ์์ ํ ๋ ๋ฆฝ๋ ์ํ์ ๋๋ค! icedAmericano is Latte๋ false๋ฅผ ๋ฐํํ์ฃ ~!
+ ์ถ๊ฐ๋ก, ์๋ ์ฝ๋์ฒ๋ผ type(of: <์ธ์คํด์ค๋ช >) ํจ์๋ฅผ ์ฌ์ฉํ๋ฉด ์ ํํ ํด๋์ค๋ช ์ return๋ฐ์ ์ ์์ต๋๋ค! ๋ฐ๋๋ผ๋ผ๋ผ๋ ์ปคํผ๋? ํ์ ๋ true์์ง๋ง, ์ ํํ๋ Latte๋ผ๋ ๊ฒ์ด์ ธ. Coffee์ธ ์ฒ์ ํ ์ ์๋ Latte์ Americano..
print(type(of: coffee)) // Coffee
print(type(of: vanillaLatte)) // Latte
print(type(of: icedAmericano)) // Americano
๐ ๋ค์ด์บ์คํ , as? as!
๋ค์์ ์์ฃผ ์ฐ๋ as? as! as์ง๋ง,... ์ ํํ ์ ์ด๊ฒ์ ์ฐ๋์ง๋ ๋ชจ๋ฅด๊ณ ... ๋์ถฉ ?! ์ด๊ฑฐ๋ ์์ค์ฝ๋๊ฐ ๋ฐ๊ฟ ์ฃผ๋ ๋๋ก ์ฐ๋... as? as! as์ ์ฐจ์ด์ ์ ๋ํด ์์๋ณด๊ฒ ์ต๋๋ค...
if let a: Americano = coffee as? Americano {
print("This is Americano")
} else {
print("FAIL")
} // FAIL
if let a: Latte = coffee as? Latte {
print("This is Latte")
} else {
print("FAIL")
} // FAIL
if let a: Coffee = coffee as? Coffee {
print("This is Coffee")
} else {
print("FAIL")
} // This is Coffee
์ด ์ฝ๋๋ฅผ ๋ณผ๊น์ฌ. ์ฒซ ๋ฒ์งธ if let ๊ตฌ๋ฌธ์์๋ a๋ผ๋ Americano ํ์ ์ ๋ณ์์ ์์์ ๋ง๋ค์๋ ๊ฑ ์ปคํผ coffee(Coffee) ๋ณ์๋ฅผ Americano ํ์ ์ผ๋ก ๋ฐ๊ฟ์ ๋ฃ์ผ๋ ค๊ณ ํฉ๋๋ค. ํ์ ๋ณ๊ฒฝ์ ์ฑ๊ณตํด์ a์ ์ ์์ ์ผ๋ก ๋ค์ด๊ฐ๋ฉด This is Americano๋ฅผ, ์๋๋ฉด FAIL์ ๋ฆฌํดํฉ๋๋ค. ํ์ง๋ง FAIL์ด ๋์ฃ ... ์ด์ ๋ Coffee ํ์ (๋ถ๋ชจ ํ์ )์ Americano ํ์ (์์ ํ์ )์ผ๋ก ๋ณํํ๋ ค๊ณ ํด์! ๊ทธ๋ ์ด๋๋ค. ๋ถ๋ชจ๋ ์์์ธ ์ฒ์ ํ ์ ์์ผ๋๊น! ๋ ๋ฒ์งธ if let ๊ตฌ๋ฌธ์์๋ ์์๋ ๋ง์ฐฌ๊ฐ์ง์ ๋๋ค! ๋ถ๋ชจ ํ์ ์ด ์์์ธ ๋ผ๋ผ์ธ ์ฒ์ ํ ์๊ฐ ์์ด์~!
๊ทธ๋ ๋ด ์ธ ๋ฒ์งธ ๊ตฌ๋ฌธ์์๋, ์๋ Coffee ํ์ ์ด์๋ coffee ์ธ์คํด์ค๋ฅผ ๊ทธ๋๋ก Coffee๋ก ๋ณํํด์ ๋ฃ์ผ๋ ค๊ณ ํ๋ ๋น์ฐํ if let ๊ตฌ๋ฌธ์ด true๊ฐ ๋๊ฒ ์ฃ ~~~
์ฌ๊ธฐ์ ์ฌ์ฉํ๋ as๋ ํ์ ์ ๋ณํํ๋ ์ฐ์ฐ์์ ๋๋ค. ๋ถ๋ชจ ํ์ ์ธ Coffee์ ์ธ์คํด์ค coffee๋ฅผ Americano ํ์ ์ผ๋ก ๋ณํํ ์ ์๋? ํ๋ ๊ตฌ๋ฌธ์ด coffee as? Americano ์ธ ๊ฒ์ด์ฃ ... ๋น์ฐํ ์คํจํ ๊ฐ๋ฅ์ฑ์ด ์์ผ๋ as?๋ฅผ ์ฌ์ฉํฉ๋๋ค! ์์ ์ฝ๋์์๋ ๋์คํจํ๊ตฐ์ฌ. ๋ถ๋ชจ๊ฐ ์์์ธ ์ฒ์ ํ ์ ์๋? ์์์ ์๋๋ก ๋ด๋ ค๊ฐ ์ ์๋? ์ด๊ฒ ๋ฐ๋ก ๋ค์ด์บ์คํ ! ๋ค์ด์บ์คํ ์ ์คํจํ ๊ฐ๋ฅ์ฑ์ด ์์ผ๋ as? ํน์ as!๋ฅผ ์ฌ์ฉํฉ๋๋ค! ๋น์ฐํ as!๋ '์๊ทธ๋ฅ๊ฐ์ ๋ก์์ผ!'๋ผ๋ ๋ป. ์ปดํ์ผ ์ค๋ฅ ๋ ์๋ ์์ด์.
if let b: Americano = icedAmericano as? Americano {
print("This is Americano")
} else{
print("FAIL")
} // This is Americano
if let b: Latte = icedAmericano as? Latte {
print("This is Latte")
} else {
print("FAIL")
} // FAIL
if let b: Coffee = icedAmericano as? Coffee {
print("This is Coffee")
} else {
print("FAIL")
} // This is Coffee
์ด๋ฒ์ ์ด ์ฝ๋๋ฅผ ๋ด ์๋ค! ์ฒซ ๋ฒ์งธ ๊ตฌ๋ฌธ์ Americano์ ์ธ์คํด์ค ์.์๋ฅผ Americano๋ก ์บ์คํ ใ ใ ๋๊น ๋น์ฐํ ์ฑ๊ณตํ๊ฒ ์ฃ ?? ์ด๊ฑฐ๋ ์ปดํ์ผ๋ฌ๋ ์๊ณ ์์ด์. ์ ๋ฐ ๊ตฌ๋ฌธ์ ์ฐ๋ฉด..
๋ ๋ฒ์งธ ๊ตฌ๋ฌธ์์๋! Coffee์ ์์ ํด๋์ค Americano์ ์ธ์คํด์ค์ธ icedAmericano๋ฅผ ๋๋ค๋ฅธ ์์ ํด๋์ค Latte๋ก ๋ฐ๊ฟ ์ ์์ผ๋๊น else๋ก ๋ค์ด๊ฐ๋๋ค.
์ธ ๋ฒ์งธ ๊ตฌ๋ฌธ์์๋ Americano์ ์ธ์คํด์ค๋ฅผ Coffee ํ์ ์ ์ฐธ์กฐํด์ ์ฌ์ฉํ๋ ค๊ณ ํ๋๋ฐ, ์ปดํ์ผ๋ฌ๊ฐ ํญ์ ์ฑ๊ณตํ๋ค๊ณ ์๋ ค ์ฃผ๋ค์! ์์์ ๋ถ๋ชจ์ธ ์ฒ์ด ๊ฐ๋ฅํ๋๊น์!
๊ทธ๋ ๋ค๋ฉด as!๋ฅผ ์จ์ ๊ฐ์ ๋ค์ด์บ์คํ ์ ํด ๋ณผ๊น์???
let castedAmericano: Americano = coffee as! Americano // ๊ฐ์ ๋ค์ด์บ์คํ
์คํจ..
๋ถ๋ชจ ํด๋์ค Coffee์ ์ธ์คํด์ค coffee๋ฅผ ์์ ํด๋์ค๋ก ๊ฐ์ ๋ค์ด์บ์คํ ํ๋ ค๊ณ ํ๋ฉด, ์ปดํ์ผ ๊ณผ์ ์์ ์๋ฌ๊ฐ ๋ฉ๋๋ค. ๊ทธ๋ฌ๋ฉด as! ๋ฅผ as? ๋ก ๋ฐ๊ฟ์ ์คํจํ ๊ฒฝ์ฐ์ ์ฒ๋ฆฌ๋ฅผ ํด ์ฃผ์ด์ผ ์์ ํ ์ฝ๋๊ฐ ๋๊ฒ ์ฃ ~~~?? ๐ต๐ซ
ํญ์ ์ฑ๊ณตํ๋ ๋ค์ด์บ์คํ ๋ ์์ด์!
let castedCoffee: Coffee = vanillaLatte as! Coffee // ํญ์ ์ฑ๊ณตํ๋ ๋ค์ด์บ์คํ
vanillaLatte์ ํ์ ์ธ Latte๊ฐ Coffee ํด๋์ค๋ฅผ ์์๋ฐ๋๋ค๋ ๊ฒ์ ์ปดํ์ผ๋ฌ๋ ์๊ณ ์๊ธฐ ๋๋ฌธ์, ์์์์ฒ๋ผ if let ๊ตฌ๋ฌธ์ผ๋ก ๊ฐ์ธ์ง ์์ ์ด๋ฐ ์ฝ๋๋ฅผ ์์ฑํ๋ฉด
๋ ๊ทธ๊ฑฐ... ํญ์ ์ฑ๊ณตํ ๊ฑธ? ๊ฐ์ ๋ก ! ๋ถ์ฌ ๊ฐ๋ฉด์ ์ธ ํ์ ์์๊ฑธ? ๊ฑ 'as'๋ก ๋ฐ๊พธ๋ ๊ฒ ์ด๋???? ๋ผ๊ณ ์น์ ํ๊ฒ ์๋ ค ์ค๋๋ค! ๐
๋ ํผ๋ฐ์ค
์ค์ํํธ ํ๋ก๊ทธ๋๋ฐ 3ํ, ์ผ๊ณฐ