- Learning Swift(Second Edition)
- Andrew J Wagner
- 232字
- 2021-07-16 12:33:08
Extensions
Up until this point, we had to define our entire custom type in a single file. However, it is sometimes useful to separate out part of our custom types into different files, or even just in the same file. To achieve this, Swift provides a feature called extensions. Extensions allow us to add additional functionality to 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) sq ft" } 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 that we would like to extend. Extensions can also be used on an existing class, struct, or enumeration, even those defined within Swift like String. Let's add an extension to String that allows us to repeat a string any number of times:
extension String { func repeatNTimes(nTimes: Int) -> String { var output = "" for _ in 0..<nTimes { output += self } return output } } "-".repeatNTimes(4) // ----
This is just one simple idea, but it is often incredibly useful to extend the built-in types.
Now that we have a good overview of what tools we have at our disposal for organizing our code, it is time to discuss an important concept in programming called scope.
- 微商之道
- 物聯(lián)網(wǎng)工程規(guī)劃技術(shù)
- 工業(yè)控制網(wǎng)絡(luò)安全技術(shù)與實(shí)踐
- SEO 20日
- 電子政務(wù)效益的經(jīng)濟(jì)分析與評價
- 物聯(lián)網(wǎng)檢驗(yàn)檢測技術(shù)
- 2018網(wǎng)信發(fā)展報告
- Getting Started with Grunt:The JavaScript Task Runner
- Implementing NetScaler VPX?
- 云工廠:開啟中國制造云時代
- LwIP應(yīng)用開發(fā)實(shí)戰(zhàn)指南:基于STM32
- Guide to NoSQL with Azure Cosmos DB
- 現(xiàn)場綜合化網(wǎng)絡(luò)運(yùn)營與維護(hù):運(yùn)營商數(shù)字化轉(zhuǎn)型技術(shù)與實(shí)踐
- 計算機(jī)通信網(wǎng)絡(luò)安全
- Building Microservices with Spring