使用?分配给swift 3.0中的可选变量?运算符返回nil

时间:2017-05-16 10:37:38

标签: swift optional

请考虑以下代码。

var a:Int?

a? = 10

print(a)

这里变量a没有被分配值10.如果是因为'?'运算符,为什么编译器不显示编译错误?

1 个答案:

答案 0 :(得分:0)

试试这个

var a:Int?

a = 10

print(a)

嗯...

  

<强>? (可选)表示您的变量在时可能包含零值! (unwrapper)表示你的变量在运行时使用(尝试从中获取值)时必须有一个内存(或值)。

主要区别在于,当optional是{n}时,可选链接会正常失败,而当可选项为nil时,强制解包会触发运行时错误。

var defaultNil : Int?  // declared variable with default nil value
println(defaultNil) >> nil  

var canBeNil : Int? = 4
println(canBeNil) >> optional(4)

canBeNil = nil
println(canBeNil) >> nil

println(canBeNil!) >> // Here nil optional variable is being unwrapped using ! mark (symbol), that will show runtime error. Because a nil optional is being tried to get value using unwrapper

var canNotBeNil : Int! = 4
print(canNotBeNil) >> 4

var cantBeNil : Int = 4
cantBeNil = nil // can't do this as it's not optional and show a compile time error

Here is basic tutorial in detail, by Apple Developer Committee.