如何在 Objective-C 中合并 2 个 NSSet?
如何在 Objective-c 中合并 2 个 NSSet?
我在谷歌上找不到解决方案。
How do I merge 2 NSSets in objective-c ?
I can't find solution on google.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这在 NSSet 的方法中很容易发现:
This is fairly easy to spot among NSSet's methods:
如果其中一个集合是 NSMutableSet ,那么您可以使用联合操作,如下例所示:
If one of the sets is an
NSMutableSet
then you can use a union operation, like in the following example:如果您要合并两组,则可以使用此功能。
如果您要将数组合并到集合中,那么您可以使用
You can use this if you are merging two set.
If you are merging array into set then you can use