带隐式展开选项的SWIFT 3不正确的字符串插值为什么隐式展开选项在SWIFT 3中使用字符串插补时不打开吗?例在操场上运行以下代码var str: String!str = "Hello"print("The following should not be printed as an optional: \(str)")产生这个输出:The following should not be printed as an optional: Optional("Hello")当然,我可以将字符串与+运算符,但我在我的应用程序中几乎到处使用字符串插值,现在由于这个(bug?)而不再工作了。这是一个错误,还是他们故意改变这种行为与SWIFT 3?
- 3 回答
- 0 关注
- 499 浏览
添加回答
举报
0/150
提交
取消