본문 바로가기
iOS

[Swift] Constant, Variable

by 꿈나무 김땡땡 2020. 7. 2.

출처

앱 12개를 만들며 배우는 Swift4 & iOS11 아이폰 iOS 개발 강좌

https://www.inflearn.com/course/swift4-%EC%8A%A4%EC%9C%84%ED%94%84%ED%8A%B8-ios-%EA%B0%9C%EB%B0%9C/dashboard

 

앱 12개를 만들며 배우는 Swift4 & iOS11 아이폰 iOS 개발 강좌 - 인프런

Swift4 를 이용해 여러개의 앱을 만들어 보는 iOS 개발강좌 입니다. 기본적인 내용을 빠르게 학습하고, 여러 실용적인 예제들로 지식을 자신을 것으로 만들 수 있는 강좌 입니다. 최대한 빠르고, 효

www.inflearn.com

 

위치

iBooks > swift 5 검색

 

내용

Constants (상수)

  • 불변 (can't be changed)
  • let 으로 선언

Variables (변수)

  • 가변적 (can be changed)
  • 타입 선언해서 쓰는 것을 추천
  • var 로 선언

Print

  • print(변수명)
  • print("hello \(friend)")
    • friend : 변수

 

예제

import UIKit

// type inference : 변수를 문자열 type으로 만듦
var str = "Hello, playground"
// type inference : 변수를 Double type으로 만듦
var version = 1.0
// 상수 선언하기
let year = 2020  // int type
let commute = true  // bool type

// type annotation
var str2:String = "Hello, playground"
var version2:Double = 1.0
// 상수 선언하기
let year2:Int = 2020  // int type
let commute2:Bool = true  // bool type

// str 변수의 내용 print
print(str)
// 변수 type을 return
print("str : \(type(of: str))")

print(version)
print("str : \(type(of: version))")

print(year)
print("str : \(type(of: year))")

print(commute)
print("str : \(type(of: commute))")


// str 변수의 내용 print
print(str2)
// 변수 type을 return
print("str : \(type(of: str2))")

print(version2)
print("str : \(type(of: version2))")

print(year2)
print("str : \(type(of: year2))")

print(commute2)
print("str : \(type(of: commute2))")

'iOS' 카테고리의 다른 글

[Swift] If, Switch 문  (0) 2020.07.03
[Swift] For, While 문  (0) 2020.07.03
[Swift] Basic Operator (기본 연산자)  (0) 2020.07.03
[Swift] Collection (Array, Set, Dictionary)  (0) 2020.07.03
[Swift] String  (0) 2020.07.03

댓글