What's the difference between class methods and instance methods in Swift?

前端 未结 2 750
抹茶落季
抹茶落季 2021-01-02 19:13
protocol NoteProtocol {
    var body: NSString? { get set }
    var createdAt: NSDate? { get set }
    var entityId: NSString? { get set }
    var modifiedAt: NSDate         


        
2条回答
  •  情书的邮戳
    2021-01-02 19:34

    Below the definition of instance methods and class methods (called type methods in Swift).

    For more details you can browse the method section of the Swift documentation

    Instance methods:

    Instance methods are functions that belong to instances of a particular class, structure, or enumeration. They support the functionality of those instances, either by providing ways to access and modify instance properties, or by providing functionality related to the instance’s purpose. Instance methods have exactly the same syntax as functions

    Type methods:

    Instance methods, as described above, are methods that are called on an instance of a particular type. You can also define methods that are called on the type itself. These kinds of methods are called type methods. You indicate type methods for classes by writing the keyword class before the method’s func keyword, and type methods for structures and enumerations by writing the keyword static before the method’s func keyword.

    Basically you can call type method (class method) without instance:

    var myNoteProtocol = NoteProtocolAdoptImplClass.noteFromNoteEntity(...);
    

    While you need to instantiate for instance methods:

    var myNoteProtocol  = NoteProtocolAdoptImplClass()
    myNoteProtocol.update(...)
    

提交回复
热议问题