美文网首页iOS Developer
iOS开发之判断数组中是否有重复元素

iOS开发之判断数组中是否有重复元素

作者: Ego_1973 | 来源:发表于2017-02-28 14:08 被阅读0次
    法一:
            NSMutableDictionary *dic = [NSMutableDictionary dictionary];
    for (NSNumber *number in arr) {
        [dic setObject:number forKey:number];
    }
    NSLog(@"[dic allValues] %@",[dic allValues]);
    

    // 打印结果


    Simona_Test_1
    法二:
     NSArray *arr = @[@1,@2,@1];
    NSSet *set = [NSSet setWithArray:arr];
    NSLog(@"[dic allValues] %@",[set allObjects]);
    

    // 打印结果:

    Simona_Test_2

    相关文章

      网友评论

        本文标题:iOS开发之判断数组中是否有重复元素

        本文链接:https://www.haomeiwen.com/subject/ojexgttx.html