swift – 使用数组作为值过滤字典

前端之家收集整理的这篇文章主要介绍了swift – 使用数组作为值过滤字典前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有字典[String:[Object]].每个对象都有.name

是否可以在字典上使用.filter返回只包含过滤值的字典?

如果我理解你的问题,你需要[String:[Object]]字典的键,其中每个Object都有一个name属性,并且该属性具有给定值.
struct Obj {
    let name: String
}

let o1 = Obj(name: "one")
let o2 = Obj(name: "two")
let o3 = Obj(name: "three")

let dict = ["a": [o1,o2],"b": [o3]]

现在假设您想要一个对象具有“两个”名称的字典键:

过滤解决方

let filteredKeys = dict.filter { (key,value) in value.contains({ $0.name == "two" }) }.map { $0.0 }

print(filteredKeys)

使用flatMap和包含的解决方

let filteredKeys = dict.flatMap { (str,arr) -> String? in
    if arr.contains({ $0.name == "two" }) {
        return str
    }
    return nil
}

print(filteredKeys)

带循环的解决方

var filteredKeys = [String]()

for (key,value) in dict {
    if value.contains({ $0.name == "two" }) {
        filteredKeys.append(key)
    }
}

print(filteredKeys)
原文链接:https://www.f2er.com/swift/318618.html

猜你在找的Swift相关文章