「Swift5」isEmpty メソッドで辞書が空か判定する方法
環境
Swift-5.2.3-RELEASE
Ubuntu 20.04.2 LTS
構文
isEmpty メソッドを使用して辞書(cftBionary)が空か判定します。
戻り値
true:辞書が空白
false:事象が値あり
使用例
var cftA : [String: String] = [:] print("空の辞書の判定結果") print( cftA.isEmpty ) var cftB = [ 11: "tokyo", 20: "oosaka", 33: "fukuoka" ] print("辞書に値がある場合は判定結果") print( cftB.isEmpty )
実行結果
$ swift test3.swift
空の辞書の判定結果
true
辞書に値がある場合は判定結果
false