当前位置:  开发笔记 > IOS > 正文

我可以将通用参数约束为*not*是可选的吗?

如何解决《我可以将通用参数约束为*not*是可选的吗?》经验,为你挑选了1个好方法。

假设我有这段代码:

func hello(thing: T) -> String {
    return "hello \(thing)"
}

我是否可以编写一个hello不能编译的函数版本,如果它是通过可选的?

let foo = "some"
let bar: String? = nil

print(helloNoOptional(foo))  // should compile
print(helloNoOptional(bar))  // should not compile

我想也许它可以通过whereT上的协议一致性或条款来实现,但是我无法想到它究竟是如何工作的.

我想这样做的原因是因为我正在处理遗留代码库中的实际函数,如果thing是nil 则没有明智的行为.因此,我宁愿防止hello被调用于一个可选项,而不是处理thing在hello中解包并尝试找出合理的错误行为.

更新:

一条可能的路径......我意识到Optional枚举符合NilLiteralConvertible协议.因此,如果我能找到一种方法来限制我的泛型符合类型,我可以事实上排除选项.但我不知道是否有可能做类似的事情


Airspeed Vel.. 5

我能想到的最好是在运行时重载和检查:

func hello(thing: T) -> String {
    return "hello \(thing)"
}

fun hello(thing: T?) -> String {
    fatalError("No optionals allowed!")
}

hello("swift")  // fine
hello(2)        // fine
hello(Int("2")) // fatal error

但我不知道一种生成编译时错误的方法.



1> Airspeed Vel..:

我能想到的最好是在运行时重载和检查:

func hello(thing: T) -> String {
    return "hello \(thing)"
}

fun hello(thing: T?) -> String {
    fatalError("No optionals allowed!")
}

hello("swift")  // fine
hello(2)        // fine
hello(Int("2")) // fatal error

但我不知道一种生成编译时错误的方法.

推荐阅读
手机用户2402852307
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有