프로퍼티 썸네일형 리스트형 [swift] 클래스 클래스 클래스는 아래와 같이 선언할 수 있다. 클래스 내부에 함수나 변수를 선언할 수 있고 변수는 프로퍼티(Property), 함수는 메서드(Method)라고 부른다. class MyClass { var property: String = "property" func method() -> String { return "method" } } 클래스에 소괄호를 붙여 인스턴스(instance)를 생성할 수 있다. 즉, 클래스라는 객체를 만들고 그것의 인스턴스를 만들어서 객체를 활용할 수 있는 것이다. let instanceOfHuman = MyClass() print(instanceOfMyClass.property) // "property" print(instanceOfMyClass.method()) // "m.. 더보기 이전 1 다음