- Swift 4 Protocol-Oriented Programming(Third Edition)
- Jon Hoffman
- 231字
- 2021-07-08 09:42:38
Classes
In object-oriented programming, we cannot create an object without a blueprint that tells the application what properties and methods to expect from the object. In most object- oriented languages, this blueprint comes in the form of a class. A class is a construct that allows us to encapsulate the properties, methods, and initializers of an object into a single type. Classes can also include other items, such as subscripts; however, we are going to focus on the basic items that make up classes not only in Swift, but in other languages as well.
Let's look at how we would use a class in Swift:
class MyClass { var oneProperty: String init(oneProperty: String) { self.oneProperty = oneProperty } func oneFunction() { } }
An instance of a class is typically called an object. However, in Swift, structures and classes have many of the same functionalities; therefore, we will use the term instance when referring to instances of either type.
Anyone who has used object-oriented programming in the past is probably familiar with the class type. It has been the backbone of object-oriented programming since its inception.
When we create instances of the class, it is named; therefore, the class is a named type. The class type is also a reference type.
The next type we are going to look at is arguably the most important type in the Swift language: Structures.
- Learning Cython Programming
- Android應用程序開發與典型案例
- 深入理解Bootstrap
- Instant Apache Stanbol
- INSTANT MinGW Starter
- 21天學通C++(第6版)
- Java軟件開發基礎
- 基于Swift語言的iOS App 商業實戰教程
- Android 應用案例開發大全(第3版)
- Java零基礎實戰
- Unity&VR游戲美術設計實戰
- Distributed Computing in Java 9
- Python預測分析與機器學習
- SEO教程:搜索引擎優化入門與進階(第3版)
- Getting Started with Electronic Projects