如何列出对象符合的协议?

How do I list the Protocols an Object Conforms to?

使用 Objective-C 运行时,我可以获得对象符合的所有 @objc 协议的列表:

let obj = NSObject()

var pc: UInt32 = 0
let plist = class_copyProtocolList(object_getClass(obj), &pc)

print("\(obj.dynamicType) conforms to \(pc) protocols")

for i in 0 ..< Int(pc) {
    print(String(format: "Protocol #%d: %s", arguments: [i, protocol_getName(plist[i])]))
}

或运行时加载的所有 Objective-C 协议:

var allProtocolCount: UInt32 = 0

let protocols = objc_copyProtocolList(&allProtocolCount)

print("\(allProtocolCount) total protocols")

for i in 0 ..< Int(allProtocolCount) {
    print(String(format: "Protocol #%d: %s", arguments: [i, protocol_getName(protocols[i])]))
}

但是这些都没有列出任何 Swift 协议:

func == (lhs: MyClass, rhs: MyClass) -> Bool {
    return lhs.value == rhs.value
}

class MyClass: Equatable, Hashable {

    var value: Int
    var hashValue: Int {
        return value
    }

    init(value: Int) {
        self.value = value
    }
}

var count: UInt32 = 0;

let strProtocols = class_copyProtocolList(MyClass.self, &count) // 0x0000000000000000

strProtocols 是 0,而我期望它是 return sizeof(Protocol) * 2(因为 MyClass 符合 EquatableHashable)。

是否有运行时公开的接口来获取对象符合的协议列表?

你不能。 Swift 不是 ObjC 的协议只存在于编译时,并不真正存在于对象本身(这就是为什么它们的方法是根据变量的类型静态分派的)。