「Swift」セットの要素数を取得するサンプル

書式
Set(arrayLiteral: xxx, xx,xx)
使用例

var cftSet = Set(arrayLiteral: "AA01", "BB02","CC03")
print(cftSet.count)
 
cftSet.insert("DD04")
print(cftSet.count)

cftSet.insert("EE05")
print(cftSet.count)

結果
3
4
5

Swift

Posted by arkgame