在类声明中,<>尖括号和在swift内部声明的参数有什么用?像这样:
public class ClassName<T: Comparable> { }
它使类通用。Swift标准库没有很多泛型类的示例,但是它具有一些非常著名的泛型结构和枚举:
public struct Array<Element> : CollectionType, MutableCollectionType, _DestructorSafeContainer public struct Dictionary<Key : Hashable, Value> : CollectionType, DictionaryLiteralConvertible public enum Optional<Wrapped> : _Reflectable, NilLiteralConvertible
在 Swift编程语言的 “泛型”下阅读有关泛型的更多信息。