0
這不是常見的情況,我想知道用戶是否通過了該值,或者它是否使用了Swift中的默認值。例如對於檢查用戶是否通過該值,或者它在Swift函數中使用了默認的可選參數
func test(firstThing: Int? = nil) {
if firstThing.isNil {
if // firstThing used the default value {
print("default")
} else {
print("nil ingresed")
}
}
}
它應該有以下行爲: 測試()// 「默認」 測試(firstThing:無)// 「無ingresed」
您已經分配的默認值爲零,所以天氣的用戶傳遞價值爲零或編譯器使用您的默認值將總是得到默認值 – OverD
@OverD有沒有辦法來檢查用戶是否通過該值? –
看看這個線程:https://stackoverflow.com/questions/37305951/default-optional-parameter-in-swift-function – Tom