swift错误: Type "xxx" does not confirm to protocol "BooleanType"

前端之家收集整理的这篇文章主要介绍了swift错误: Type "xxx" does not confirm to protocol "BooleanType"前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

刚接触swift,做值判断是否为空的时候,报了这个错误,Type "String" does not confirm to protocol "BooleanType"

let s_num1 = "123";
let s_num2 = s_num1.toInt()
var s_num4 = 123;

if (s_num1 != nil) {println("true")}  //这行报错
if (s_num2 != nil) {println("true")}  //这里不报错
if (s_num4 != nil) {println("true")}  //这里报错
上面,s_num2跟另外两个的区别是:s_num2是optional类型,而将s_num4设置为nil的时候也是报错的,所以可以这样理解,swift中如果一个变量可能为nil,那么在声明的时候一定要加上?,不然就不能为nil。s_num2的实际写法其实是:
let s_num2:Int? = s_num1.toInt()
原文链接:https://www.f2er.com/swift/326655.html

猜你在找的Swift相关文章