美文网首页
一个很“傻”的面试题

一个很“傻”的面试题

作者: NextStepPeng | 来源:发表于2019-07-30 16:14 被阅读0次

    请写出,下面的打印是?

    dispatch_async(dispatch_get_global_queue(0, 0), ^{
            NSLog(@"1");
            [self performSelector:@selector(pintLog) withObject:nil afterDelay:0];
             //[self performSelectorOnMainThread:@selector(pintLog) withObject:nil waitUntilDone:false];//
    //        [self performSelectorInBackground:@selector(pintLog) withObject:nil];//
            NSLog(@"3");
        });
    - (void)pintLog{
        
         NSLog(@"2");
    }
    
    

    请说为什么

    相关文章

      网友评论

          本文标题:一个很“傻”的面试题

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