微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

IOS学习笔记二十NSSet和NSMutableSet

1、NSSet、NSMutableSet

NSSet元素无序、不能重复

NSMutableSet元素无序、不能重复,有一些向集合中增加元素的功能删除元素.......

 

 

 

 

2、测试Demo

int main(int argc,char * argv[]) {
    @autoreleasepool {
        
        NSSet *set = [NSSet setWithObjects:@"chenyu",@"hello",@"word",@"see",nil];
        set = [set setByAddingObject:@"chenxuan"];
        for (id object in set)
        {
            NSLog(@"%@",object);
        }
        NSSet *set1 = [NSSet setWithObjects:@"chenyu1",@"hello1",nil];
        //set和set1的并集
        NSLog(@".......");
        NSSet *s = [set setByAddingObjectsFromSet:set1];
        for (id object in s)
        {
            NSLog(@"%@",object);
        }
        //是否有交集
        NSLog(@"set1 和 set 是否有交集:%d",[set1 intersectsSet:set]);
        //set1是否是set集合的子集
        
        BOOL bo = [set1 containsObject:@"see"];
        NSLog(@"set1 是否包含 see %d",bo);
        
        NSLog(@"-------");
        NSMutableSet *set2 = [NSMutableSet setWithCapacity:10];
        [set2 addobject:@"chenyu"];
        [set2 addobject:@"hello"];
        [set2 addobject:@"hello"];
        [set2 addobject:@"hello"];
        [set2 addobject:@"hello1"];
        [set2 addobject:@"hello3"];
        NSLog(@"-------");
        for (id object in set2)
        {
            NSLog(@"%@",object);
        }
        NSLog(@"-------");
        [set2 removeObject:@"hello1"];
        for (id object in set2)
        {
            NSLog(@"%@",object);
        }
    }
}

 

 

 

 

 

 

3、运行结果

2018-07-18 23:26:20.748305+0800 cyTest[33554:12766983] hello
2018-07-18 23:26:20.748415+0800 cyTest[33554:12766983] chenyu1
2018-07-18 23:26:20.748554+0800 cyTest[33554:12766983] word
2018-07-18 23:26:20.749114+0800 cyTest[33554:12766983] set1 和 set 是否有交集:1
2018-07-18 23:26:20.749626+0800 cyTest[33554:12766983] set1 是否包含 see 1
2018-07-18 23:26:20.749838+0800 cyTest[33554:12766983] -------
2018-07-18 23:26:20.750052+0800 cyTest[33554:12766983] -------
2018-07-18 23:26:20.773300+0800 cyTest[33554:12766983] chenyu
2018-07-18 23:26:20.789523+0800 cyTest[33554:12766983] hello1
2018-07-18 23:26:20.791472+0800 cyTest[33554:12766983] hello3
2018-07-18 23:26:20.791896+0800 cyTest[33554:12766983] hello
2018-07-18 23:26:20.797038+0800 cyTest[33554:12766983] -------
2018-07-18 23:26:20.800879+0800 cyTest[33554:12766983] chenyu
2018-07-18 23:26:20.804327+0800 cyTest[33554:12766983] hello3
2018-07-18 23:26:20.804808+0800 cyTest[33554:12766983] hello

 

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐