gpt4 book ai didi

swift - Swift 5 中的 XOR?

转载 作者:可可西里 更新时间:2023-10-31 23:56:10 25 4
gpt4 key购买 nike

我正在尝试在 Swift 5 中执行 XOR 操作。文档似乎没有明确提及在此处使用两个 bool 值执行此操作:

https://docs.swift.org/swift-book/LanguageGuide/AdvancedOperators.html

这可能吗?它说要使用 ^ 操作,但尝试时出现错误:

 card != nil ^ appointment.instructor == nil

ERROR Adjacent operators are in non-associative precedence group 'ComparisonPrecedence'

最佳答案

您需要为 Bool 定义 ^,因为它只存在于 Ints 中。请参阅苹果文档 here .

例子:

import UIKit
import PlaygroundSupport

extension Bool {
static func ^ (left: Bool, right: Bool) -> Bool {
return left != right
}
}

let a = true
let b = false
print (a^b)

关于swift - Swift 5 中的 XOR?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55478274/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com