타입프로퍼티 (1) 썸네일형 리스트형 [swift] 구조체 (struct) 구조체 (struct) 스위프트의 대부분의 타입은 구조체로 이루어져 있고, 구조체는 값 타입이다. (함수는 참조 타입!) 프로퍼티 : 타입 안에 들어가는 변수 메소드 : 타입 안에 들어가는 함수 struct Sample { var mutableProperty: Int = 100 // 가변 프로퍼티 let immutableProperty: Int = 100 // 불변 프로퍼티 // 이 두 개는 인스턴스 프로퍼티 static var typeProperty: Int = 100 // 타입 프로퍼티 func instanceMethod() { // 인스턴스 메소드 print("instance method") } static func typeMethod() { // 타입 메소드 print("type method") .. 이전 1 다음