swift 문법 총정리(9) Properties_Stored_Computed
Property 프로퍼티
Property 프로퍼티
Class 구성요소를 만들 때, 일반적으로 쓰이는 형태. 참조를 한다. 값을 복사하지 않는다 라는 개념이 있다. 기능이나 형태를 묶어서 만든다고 생각하면 된다.
Enumberation
Closure ```swift //func func sayHi() -> String { return “Hello” } //closure var sayGreet = { () -> String in return “Hello” }
Function 함수 - 기능