gpt4 book ai didi

swift - 在 swift 2.2 中无法正确推断可选类型

转载 作者:IT王子 更新时间:2023-10-29 05:19:48 24 4
gpt4 key购买 nike

问题:

当使用 swift 2.2 在 Xcode 7.3 下运行以下代码时,编译器无法正确推断可选类型:

import Foundation

func whatAmI<T>(inout property:T?)
{
switch property {
case is Int?:
print("I am an Int?")
case is String?:
print("I am a String?")
default:
print("I don't know what I am")
}
}

var string : String?
whatAmI(&string)

在我这边使用 Xcode 7.3 这将打印 I am an Int?

但是,当我在将变量传递给函数之前用空字符串初始化变量时,开关将其推断为字符串?

这会在以前的 Xcode 版本中打印 I am a String?

你得到了相似的结果吗?

观察:

使用此函数签名时会发生同样的情况:

func whatAmI(property:AnyObject?)

-- 错误--

这个问题是 swift 2.2 中的回归: https://bugs.swift.org/browse/SR-1024

最佳答案

这似乎是一个错误。最小示例如下:

func genericMethod<T>(property: T?) {
print(T) // String

let stringNil = Optional<String>.None

print(stringNil is String?) // true (warning - always true)
print(stringNil is T?) // true

let intNil = Optional<Int>.None

print(intNil is String?) // false (warning - always fails)
print(intNil is T?) // true - BUG
}

genericMethod("")

关于swift - 在 swift 2.2 中无法正确推断可选类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36160934/

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