【Swift】isEmptyの挙動メモ
isEmptyを文字列や配列に使うことがあると思いますが、たまにごちゃっとなるのでメモします。
同じように「どうだったけ?」という方の参考になれば幸いです!
実行環境
Swift 5.4.2
nilがない場合
let case1 = ""
print(case1.isEmpty)
// true
let case2 = " "
print(case2.isEmpty)
// false
let case3 = [""]
print(case3.isEmpty)
// false
let case4 = [" "]
print(case4.isEmpty)
// false
let case5:[String] = []
print(case5.isEmpty)
// true
nilがある場合
let case1: String? = nil
print(case1?.isEmpty) //warningが出ます
// nil
let case2: String? = nil
print(case2!.isEmpty)
// nilを強制アンラップするためクラッシュします
let temp: String? = nil
let case3 = [temp]
print(case3.isEmpty)
// false
let temp: String? = nil
let case4 = [temp, ""]
print(case4.isEmpty)
// false
let temp1: String? = nil
let temp2: String? = nil
let case5 = [temp1, temp2]
print(case5.isEmpty)
// false
Author And Source
この問題について(【Swift】isEmptyの挙動メモ), 我々は、より多くの情報をここで見つけました https://qiita.com/Toshi_Tab/items/dfe388ad17272054f151著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .