正如苹果在
Swift的文档中的
Metatype Type部分中所说:
A Metatype type refers to the type of any type,including class types,structure types,enumeration types,and protocol types.
是否有一个基类来引用任何类,结构,枚举或协议(例如MetaType)?
我的理解是协议类型仅限于用作通用约束,因为Self或相关类型要求(嗯,这是Xcode错误告诉我的).
那么,考虑到这一点,也许有一个Class基类来识别类引用?或者是所有可构造类型(类,枚举)的Type基类?其他可能性可能是Protocol,Struct,Enum和Closure.
如果你没有明白我的意思,请看这个例子.
func funcWithType (type: Type) { // I could store this Type reference in an ivar,// as an associated type on a per-instance level. // (if this func was in a class,of course) self.instanceType = type } funcWithType(String.self) funcWithType(CGRect.self)
虽然泛型在1-2个常量关联类型中运行良好,但我不介意能够将关联类型视为实例变量.
谢谢你的建议!
解决方法
这有效:
func funcWithType (type: Any.Type) { } funcWithType(String.self) funcWithType(CGRect.self)