美文网首页
Block遍历

Block遍历

作者: OwenWong | 来源:发表于2019-01-14 12:05 被阅读0次

    一、字典

    enumerateKeysAndObjectsUsingBlock是NSDictionary的自带方法。enumerateKeysAndObjectsUsingBlock遍历dictionary时会把里面所有的key和value一组一组的展示出来,每组都会执行Block。这其实就是传递一个block到另一个方法,在这个例子里它会带着特定参数被反复调用,直到找到一个key2的key,然后就会通过重新赋值BOOL *stop来停止遍历同时停止调用block。

    NSDictionary *dic = @{@"key1":@"Obj1",
                               @"key2":@"Obj2",
                              @"key3":@"Obj3",
                              @"key4":@"Obj4",
                              @"key5":@"Obj5"
                               };
        // 使用 block 同时遍历字典 key、value
        [dic enumerateKeysAndObjectsUsingBlock:^(id key, id value, BOOL *stop) {
            NSLog(@"value for key %@ is %@ ", key, value);
            if ([@"key2" isEqualToString:key]) {
                *stop = YES;
            }
        }];
          // 对于耗时且顺序无关的遍历,使用并发
    //    [dic enumerateKeysAndObjectsWithOptions:NSEnumerationConcurrent usingBlock:^(id  _Nonnull key, id  _Nonnull obj, BOOL * _Nonnull stop) {
    //        NSLog(@"value for key %@ is %@ ", key, obj);
    //        if ([@"key2" isEqualToString:key]) {
    //            *stop = YES;
    //        }
    //    }];
        // 倒序遍历
    //    [dic enumerateKeysAndObjectsWithOptions:NSEnumerationReverse usingBlock:^(id  _Nonnull key, id  _Nonnull obj, BOOL * _Nonnull stop) {
    //        NSLog(@"value for key %@ is %@ ", key, obj);
    //        if ([@"key2" isEqualToString:key]) {
    //            *stop = YES;
    //        }
    //    }];
    

    二、数组

    NSArray *array = [[NSArray alloc]initWithObjects:@"a",@"b",@"c",@"d",@"e",@"f", nil];
        
        //遍历数组元素
        [array enumerateObjectsUsingBlock:^(id  _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {
            NSLog(@"obj=%@   idx=%ld",obj,idx);
        }];
        
        //如果指定了NSEnumerationConcurrent顺序,那么底层通过GCD来处理并发执行事宜,具体实现可能会用到dispatch group。也就是说,这个会用多线程来并发实现,并不保证按照顺序执行
        
        //NSEnumerationReverse 倒序排列
        [array enumerateObjectsWithOptions:NSEnumerationReverse usingBlock:^(id obj, NSUInteger idx, BOOL * _Nonnull stop) {
            NSLog(@"idx=%ld, id=%@", idx, obj);
            
            //当需要结束循环的时候,调用stop,赋予YES
            if (idx ==3) {
                *stop = YES;
            }
            
        }];
        //NSIndexSet类代表一个不可变的独特的无符号整数的集合,称为索引,因为使用它们的方式。这个集合被称为索引集    唯一的,有序的,无符号整数的集合
        [NSIndexSet indexSetWithIndex:1];//创建一个索引集合,根据索引值
        [NSIndexSet indexSetWithIndexesInRange:NSMakeRange(0,8)];//创建一个索引集合,根据一个NSRange对象
    
        [array enumerateObjectsAtIndexes:[NSIndexSet indexSetWithIndexesInRange:NSMakeRange(0,3)] options:NSEnumerationReverse usingBlock:^(id  _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {
            NSLog(@"\n\n\nidx=%ld, id=%@", idx, obj);
        }];
    

    for in、经典for循环和EnumerateObjectsUsingBlock 的比较:
    对于集合中对象数很多的情况下,for in 的遍历速度非常之快,但小规模的遍历并不明显(还没普通for循环快)
    Value查询index的时候, 面对大量的数组推荐使用 enumerateObjectsWithOptions的并行方法.
    遍历字典类型的时候, 推荐使用enumerateKeysAndObjectsUsingBlock,block版本的字典遍历可以同时取key和value(forin只能取key再手动取value)

    参考:

    https://www.jianshu.com/p/c45f928b0519

    相关文章

      网友评论

          本文标题:Block遍历

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