Swift / Playground - 断言在Xcode 6.3.2中不起作用?

时间:2015-06-18 14:24:54

标签: xcode swift assert swift-playground

以下代码声明不是由操场解释的, 导致显示初始常量值,但断言永远不会被触发。

我在代码中遗漏了什么,或者这是一个错误?

let aPersonsAge = -10
assert(aPersonsAge >= 0, "This is logically impossible.") // not thrown

var myString: String? = "hey there, stack overflow!"
myString = nil
assert(myString != nil, "This cannot be nil.") // not thrown

0 个答案:

没有答案