- Swift์ ๊ธฐ๋ณธ ๋ฐ์ดํฐ ํ์
- Bool
- Int, UInt
- Float, Double
- Character, String
- Bool
- true์ false๋ง์ ๊ฐ์ผ๋ก ๊ฐ์ง๋ ํ์
- Int, UInt
- Int : ์ ์ ํ์ . ํ์ฌ๋ ๊ธฐ๋ณธ์ ์ผ๋ก 64๋นํธ ์ ์ํ
- UInt : ์์ ์ ์ ํ์ . ํ์ฌ๋ ๊ธฐ๋ณธ์ ์ผ๋ก 64๋นํธ ์์ ์ ์ํ.
- Float, Double
- Float : ์ค์ ํ์ . 32๋นํธ ๋ถ๋์์ํ.
- Double : ์ค์ ํ์ . 64๋นํธ ๋ถ๋์์ํ.
- Character, String
- Character : ๋ฌธ์ ํ์ . ์ ๋์ฝ๋ ์ฌ์ฉ. ํฐ๋ฐ์ดํ("") ์ฌ์ฉ.
- String : ๋ฌธ์์ด ํ์ . ์ ๋์ฝ๋ ์ฌ์ฉ. ํฐ๋ฐ์ดํ("") ์ฌ์ฉ.
- ์๊ฐํด๋ณด๊ธฐ
๋ค์ ์ฝ๋์์ integer, floatingPoint, apple ์์๋ ๊ฐ๊ฐ ์ด๋ค ํ์ ์ด ๋ ๊น์? ์๊ฐํด๋ณด๊ณ ํ์ธํด๋ณด์ธ์~!
let integer = 100
let floatingPoint = 12.34
let apple = "A"
๊ฐ๊ฐ Int, Float, Character ํ์ ์ด ๋๋ค.