Swift不等于nil
我照着书上的例子写下了如下代码,运行后发现提示Nil cannot be assigned to type 'Int'
var i:Int?=1 if i!=nil {//Nil cannot be assigned to type 'Int' print("not nil") } else{ print("nil") }
检查了很久都不知道错在哪里,到后来尝试改成了下面这种代码,发现就可以了
var i:Int?=1 if i != nil {//注意,!=前后都有个空格 print("not nil") } else{ print("nil") }
虽然成功运行,但并不是很清楚里面的原因是什么。还请大家前来指教
** Then I looked up at the sky and saw the sun **
posted on 2016-02-19 14:12 chenyangsocool 阅读(1071) 评论(0) 编辑 收藏 举报