iOS Swift 문법 - Type Method
포스트
취소

iOS Swift 문법 - Type Method

안녕하세요. narvis2 입니다.
이번시간에는 Swift 문법에 중에서도 Type Method에 대하여 알아보는 시간을 가지도록 하겠습니다.

🍀 Type Method


  • Type 자체에서 호출되는 Method
  • instance를 생성하지 않고도 타입 자체에서 Method를 호출할 수 있음
    • kotlin 의 singletonobject/companion object와 비슷
  • method 앞에 static 이나 class의 키워드가 붙음
static funcclass func
서브 클래스에서 override 할 수 없음서브 클래에서 override 가능

☘️ class func

  • class는 상속이 가능하나 Struct/Enum에서는 상속이 불가능하여 class func을 사용할 수 없음

    ❗️ Struct/Enum에서는 오로지 Static func만 사용 가능

  • override 가능

예제

1
2
3
4
5
6
7
8
9
class Print {

    class func printMessage() {
        print("Hello!!")
    }
}

// Type Method로 instance를 생성해줄 필요 없이 타입 자체에서 호출할 수 있음
Print.printMessage()

☘️ static func

  • override 불가

예제

1
2
3
4
5
6
7
8
class Print {

    static func printMessage() {
        print("Hello!!")
    }
}

Print.printMessage()
이 기사는 저작권자의 CC BY 4.0 라이센스를 따릅니다.