struct Mystructure { let instanceProperty = "ABC" static let typeProperty = "123" }
let myStructure = Mystructure() print(myStructure.instanceProperty) // ABC print(Mystructure.typeProperty) // 123
- type property의 경우 structure에 있는 새로운 instance 객체를 만들 필요가 없이 structure를 통해 바로 property를 불러올 수 있다.