我在Swift的switch语句中使用字符串时遇到问题。
我有一个名为opts的字典被声明为< String,AnyObject>
我有这个代码:
switch opts["type"] { case "abc": println("Type is abc") case "def": println("Type is def") default: println("Type is something else") }
在“abc”和case“def”的情况下,我得到以下错误:
Type 'String' does not conform to protocol 'IntervalType'
有人可以向我解释我做错了什么吗?
在switch语句中使用可选项时会显示此错误。
简单地展开变量,一切都应该起作用。
原文链接:https://www.f2er.com/swift/320697.html简单地展开变量,一切都应该起作用。
switch opts["type"]! { case "abc": println("Type is abc") case "def": println("Type is def") default: println("Type is something else") }
编辑:
如果您不想强制展开可选项,可以使用防护。参考:Control Flow: Early Exit