- Learning Swift
- Andrew J Wagner
- 233字
- 2021-07-16 13:54:10
Extensions
Up until this point, we had to define our entire custom type in a single file. However, it can sometimes be useful to separate out part of our custom types in different files or even just within the same file. For this, Swift provides a feature called extensions. Extensions allow us to add additional functionality to the existing types from anywhere.
This functionality is limited to additional functions and additional computed properties:
extension Building { var report: String { return "This building is \(self.squareFootage) square feet" } func isLargerThanOtherBuilding(building: Building) -> Bool { return self.squareFootage > building.squareFootage } }
Note that to define an extension, we use the extension
keyword followed by the type we would like to extend. This can be used on any class, struct, or enumeration, even those defined within Swift, such as String
. Let's add an extension to String
, which allows us to repeat a string any number of times:
extension String { func repeat(nTimes: Int) -> String { var output = "" for index in 0..<nTimes { output += self } return output } } "-".repeat(4) // ----
This is just one simple idea, but it can often be incredibly useful to extend the built-in types.
Now that we have a good overview of what tools we have at our disposal to organize our code, it is time to discuss an important concept in programming called the scope.
- 計算機網(wǎng)絡(luò)
- Java 開發(fā)從入門到精通(第2版)
- OpenShift開發(fā)指南(原書第2版)
- 神經(jīng)網(wǎng)絡(luò)編程實戰(zhàn):Java語言實現(xiàn)(原書第2版)
- 老“碼”識途
- 微信小程序開發(fā)解析
- Multithreading in C# 5.0 Cookbook
- Access 2010數(shù)據(jù)庫應(yīng)用技術(shù)實驗指導(dǎo)與習(xí)題選解(第2版)
- Java 從入門到項目實踐(超值版)
- 從零開始學(xué)UI:概念解析、實戰(zhàn)提高、突破規(guī)則
- Visual C++從入門到精通(第2版)
- MATLAB從入門到精通
- 開發(fā)者測試
- Qt編程快速入門
- R High Performance Programming