Generics are another important object-oriented concepts in,In addition to multi-state,It further increases the range of reuse code,For Swift language,,Generics throughout its always。
From Print() Speaking
We start from the first day of class in the use of this global function,It allows us to show the statement on the screen,Very simple to use,It can pass a string。
Incoming string displayed string,Incoming shaping on the digital display ......
and many more! As a function,How can it receives two different parameters!
Well, we use everything cmd button,Look at this point into print() Exactly how the function declaration:
1 |
public func print<T>(value: T) |
If there are no generics
Now,Let's write a method to exchange two numbers (copied from Apple's official manual)
1 2 3 4 5 |
func swapTwoInts(inout a: Int, inout _ b: Int) { let temporaryA = a a = b b = temporaryA } |
If you want to use,It is used:
1 2 3 |
var someInt = 3 var anotherInt = 107 swapTwoInts(&someInt, &anotherInt) |
Now I want to swap two strings:
1 2 3 4 5 |
func swapTwoStrings(inout a: String, inout _ b: String) { let temporaryA = a a = b b = temporaryA } |
I would also like to swap two double-precision floating-point number:
1 2 3 4 5 |
func swapTwoDoubles(inout a: Double, inout _ b: Double) { let temporaryA = a a = b b = temporaryA } |
That is,Now we owned the Int,String ,Double version of the exchange location method - their only difference is a different type。This is not consistent with the principles of our development - the same content is repeated too many - thousands and thousands of types,Not including our own type definition,Are so exchange,that……
Using generics rescue field
1 2 3 4 5 |
func swapTwoValues<T>(inout a: T, inout _ b: T) { let temporaryA = a a = b b = temporaryA } |
Such,Whether Int or String,Or even write your own types,You can step in place。
1 2 3 4 5 6 7 8 9 |
var someInt = 3 var anotherInt = 107 swapTwoValues(&someInt, &anotherInt) // someInt is now 107, and anotherInt is now 3 var someString = "hello" var anotherString = "world" swapTwoValues(&someString, &anotherString) // someString is now "world", and anotherString is now "hello" |
Generics
We use T to represent a placeholder - Plainly it is a wildcard,We do not restrict incoming parameter of type,The only requirement is that the type of these two parameters have to be consistent。Then we use the method of angle brackets behind<>Enclose a placeholder,On behalf of this method is a generic method。
the following,We come to realize a structure with generics:
1 2 3 4 5 6 7 8 9 |
struct IntStack { var items = [Int]() mutating func push(item: Int) { items.append(item) } mutating func pop() -> Int { return items.removeLast() } } |
This is a plastic stack - the concept we have talked about the stack,An object oriented execution of which is to be completed in the stack,Now we write a plastic stack,This includes two methods of the stack and the stack - apparently,This structure can also be transformed into other types of stacks ...... now we need it to be implemented generics:
1 2 3 4 5 6 7 8 9 |
struct Stack<Element> { var items = [Element]() mutating func push(item: Element) { items.append(item) } mutating func pop() -> Element { return items.removeLast() } } |
You see,This time we use the Element as a placeholder,The key is to use<>It can display。
Such,We just need to show the type when generating instances,This structure can be used corresponding to the type of。
Original article written by LogStudio:R0uter's Blog » Generics
Reproduced Please keep the source and description link:https://www.logcg.com/archives/1138.html