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

只谈情不闲聊 提交于 2019-11-30 20:55:39
Dhruv Ramani

Some text from the 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.

ie. An Instance of the class has to call this method. Example :

var a:classAdoptingNoteProtocol=classAdoptingNoteProtocol()
a.update()

Class 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.

They are what are called as Static methods in other languages.To use them, this is what I would do:

var b=classAdoptingNoteProtocol.noteFromNoteEntity(...)

This will return a instance of a class which adopts NoteProtocol. ie. you don't have to create a instance of the class to use them.

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(...)
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!