在 Swift 3 中,比较两个闭包的方法是什么?

In Swift 3, what is a way to compare two closures?(在 Swift 3 中,比较两个闭包的方法是什么?)
本文介绍了在 Swift 3 中,比较两个闭包的方法是什么?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

假设你在 Swift 3 中有两个 (Int)->() 类型的闭包,并测试它们是否相同:

Suppose you have two closures of type (Int)->() in Swift 3 and test to see if they are the same as each other:

typealias Baz = (Int)->()
let closure1:Baz = { print("foo ($0)") }
let closure2:Baz = { print("bar ($0)") }

if(closure1 == closure2) {
    print("equal")
}

编译失败,提示:

二元运算符 '==' 不能应用于两个 '(Int)->()' 操作数

Binary operator '==' cannot be applied to two '(Int)->()' operands

好的,那么我们如何比较两个相同类型的闭包,看看它们是否相同?

OK, well, how then can we compare two closures of the same type, to see if they are the same?

推荐答案

如果你想跟踪自己的闭包,将它们用作字典键等,你可以使用这样的东西:

In the case where you want to track your own closures, uses them as Dictionary keys, etc., you can use something like this:

struct TaggedClosure<P, R>: Equatable, Hashable {
    let id: Int
    let closure: (P) -> R

    static func == (lhs: TaggedClosure, rhs: TaggedClosure) -> Bool {
        return lhs.id == rhs.id
    }

    var hashValue: Int { return id }
}

let a = TaggedClosure(id: 1) { print("foo") }
let b = TaggedClosure(id: 1) { print("foo") }
let c = TaggedClosure(id: 2) { print("bar") }

print("a == b:", a == b) // => true
print("a == c:", a == c) // => false
print("b == c:", b == c) // => false

这篇关于在 Swift 3 中,比较两个闭包的方法是什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Why local notification is not firing for UNCalendarNotificationTrigger(为什么没有为UNCalendarNotificationTrigger触发本地通知)
Pushing UIViewController above UITabBar(将UIView控制器推送到UITabBar上方)
Dropbox Files.download does not start when number of files in folder is gt; 1000(当文件夹中的文件数为1000时,Dropbox Files.Download不会启动)
appearance().setBackgroundImage Not Working On Custom Class(外观().setBackoundImage在自定义类上不起作用)
Show/Hide barButtonItem(显示/隐藏barButtonItem)
java.lang.IllegalStateException: SimpleTypeImpl should not be created for error type(异常:不应为错误类型创建SimpleTypeImpl)