( स्विफ्ट 2.x )
आप प्रोटोकॉल को भी कह सकते हैं कि जेनेरिक प्रकार के तरीकों के लिए ब्लू-रिपिंट वाले प्रोटोकॉल के अनुरूप सरणी का विस्तार कर सकते हैं, उदाहरण के लिए, एक प्रोटोकॉल जिसमें सभी प्रकार के जेनेरिक सरणी तत्वों के लिए कुछ प्रकार की बाधा के अनुरूप आपके कस्टम कार्यात्मक बर्तन हैं, प्रोटोकॉल कहते हैं MyTypes
। इस दृष्टिकोण का उपयोग करने वाला बोनस यह है कि आप सामान्य सरणी तर्कों को लेते हुए कार्य लिख सकते हैं, एक बाधा के साथ कि ये सरणी तर्क आपके कस्टम फ़ंक्शन उपयोगिताओं प्रोटोकॉल के अनुरूप होने चाहिए, प्रोटोकॉल कहते हैं MyFunctionalUtils
।
आप इस व्यवहार को या तो स्पष्ट रूप से प्राप्त कर सकते हैं, प्रकार सरणी तत्वों को विवश करके MyTypes
, या --- जैसा कि मैं नीचे वर्णित विधि में दिखाऊंगा ---, काफी करीने से, स्पष्ट रूप से, अपने सामान्य सरणी फ़ंक्शंस हेडर को सीधे इनपुट एरे को दिखाते हुए। के अनुरूप है MyFunctionalUtils
।
हम MyTypes
प्रकार की बाधा के रूप में उपयोग के लिए प्रोटोकॉल के साथ शुरू करते हैं ; इस प्रोटोकॉल द्वारा आपके जेनेरिक में फिट होने के प्रकारों का विस्तार करें (नीचे दिए गए उदाहरण मौलिक प्रकार Int
और Double
साथ ही एक कस्टम प्रकार का विस्तार करते हैं MyCustomType
)
/* Used as type constraint for Generator.Element */
protocol MyTypes {
var intValue: Int { get }
init(_ value: Int)
func *(lhs: Self, rhs: Self) -> Self
func +=(inout lhs: Self, rhs: Self)
}
extension Int : MyTypes { var intValue: Int { return self } }
extension Double : MyTypes { var intValue: Int { return Int(self) } }
// ...
/* Custom type conforming to MyTypes type constraint */
struct MyCustomType : MyTypes {
var myInt : Int? = 0
var intValue: Int {
return myInt ?? 0
}
init(_ value: Int) {
myInt = value
}
}
func *(lhs: MyCustomType, rhs: MyCustomType) -> MyCustomType {
return MyCustomType(lhs.intValue * rhs.intValue)
}
func +=(inout lhs: MyCustomType, rhs: MyCustomType) {
lhs.myInt = (lhs.myInt ?? 0) + (rhs.myInt ?? 0)
}
प्रोटोकॉल MyFunctionalUtils
(ब्लूप्रिन्ट्स हमारे अतिरिक्त जेनेरिक सरणी फ़ंक्शन उपयोगिताओं को पकड़कर) और उसके बाद एरे के विस्तार MyFunctionalUtils
; ब्लू-प्रिंटेड विधि का कार्यान्वयन:
/* Protocol holding our function utilities, to be used as extension
o Array: blueprints for utility methods where Generator.Element
is constrained to MyTypes */
protocol MyFunctionalUtils {
func foo<T: MyTypes>(a: [T]) -> Int?
// ...
}
/* Extend array by protocol MyFunctionalUtils and implement blue-prints
therein for conformance */
extension Array : MyFunctionalUtils {
func foo<T: MyTypes>(a: [T]) -> Int? {
/* [T] is Self? proceed, otherwise return nil */
if let b = self.first {
if b is T && self.count == a.count {
var myMultSum: T = T(0)
for (i, sElem) in self.enumerate() {
myMultSum += (sElem as! T) * a[i]
}
return myMultSum.intValue
}
}
return nil
}
}
अंत में, परीक्षण और दो उदाहरणों में क्रमशः निम्न मामलों के साथ, जेनेरिक सरणियों को लेते हुए एक फ़ंक्शन दिखाया गया है
अंतर्निहित अभिकथन दिखा रहा है कि सरणी पैरामीटर प्रोटोकॉल 'MyFunctionalUtils' के अनुरूप है, प्रकार के तत्वों को 'MyTypes' (फ़ंक्शन bar1
) के लिए विवश करने के माध्यम से ।
स्पष्ट रूप से दिखा रहा है कि सरणी पैरामीटर प्रोटोकॉल 'MyFunctionalUtils' (फ़ंक्शन bar2
) के अनुरूप हैं ।
परीक्षण और उदाहरण इस प्रकार हैं:
/* Tests & examples */
let arr1d : [Double] = [1.0, 2.0, 3.0]
let arr2d : [Double] = [-3.0, -2.0, 1.0]
let arr1my : [MyCustomType] = [MyCustomType(1), MyCustomType(2), MyCustomType(3)]
let arr2my : [MyCustomType] = [MyCustomType(-3), MyCustomType(-2), MyCustomType(1)]
/* constrain array elements to MyTypes, hence _implicitly_ constraining
array parameters to protocol MyFunctionalUtils. However, this
conformance is not apparent just by looking at the function signature... */
func bar1<U: MyTypes> (arr1: [U], _ arr2: [U]) -> Int? {
return arr1.foo(arr2)
}
let myInt1d = bar1(arr1d, arr2d) // -4, OK
let myInt1my = bar1(arr1my, arr2my) // -4, OK
/* constrain the array itself to protocol MyFunctionalUtils; here, we
see directly in the function signature that conformance to
MyFunctionalUtils is given for valid array parameters */
func bar2<T: MyTypes, U: protocol<MyFunctionalUtils, _ArrayType> where U.Generator.Element == T> (arr1: U, _ arr2: U) -> Int? {
// OK, type U behaves as array type with elements T (=MyTypes)
var a = arr1
var b = arr2
a.append(T(2)) // add 2*7 to multsum
b.append(T(7))
return a.foo(Array(b))
/* Ok! */
}
let myInt2d = bar2(arr1d, arr2d) // 10, OK
let myInt2my = bar2(arr1my, arr2my) // 10, OK
extension T[]
XCode में Array टाइप पर कमांड-क्लिक करते समय समान रूप से देखना , लेकिन त्रुटि प्राप्त किए बिना इसे लागू करने का कोई तरीका नहीं देखना।