菜鸟教程小白 发表于 2022-12-12 10:23:07

ios - 为什么 NSEnumerationReverse 而不是 NSEnumerationForward


                                            <p><p>我正在研究循环遍历一个数组,我偶然发现了这种方法 -- </p>

<pre><code>- (void)enumerateObjectsWithOptions:(NSEnumerationOptions)opts
                         usingBlock:(void (^)(id obj, NSUInteger idx, BOOL *stop))block
</code></pre>

<p>NSEnumerationOptions 定义为 - </p>

<pre><code>enum {
   NSEnumerationConcurrent = (1UL &lt;&lt; 0),
   NSEnumerationReverse = (1UL &lt;&lt; 1),
};
typedef NSUInteger NSEnumerationOptions;
</code></pre>

<p>这些的描述来自<a href="http://nshipster.com/enumerators/" rel="noreferrer noopener nofollow">NSHipster&#39;s blog post about enumeration</a> -- </p>

<blockquote>
<p><strong>NSEnumerationConcurrent</strong>: <em>Specifies that the Block enumeration should
be concurrent. The order of invocation is nondeterministic and
undefined; this flag is a hint and may be ignored by the
implementation under some circumstances; the code of the Block must be
safe against concurrent invocation.</em> </p>

<p><strong>NSEnumerationReverse</strong>: <em>Specifies
that the enumeration should be performed in reverse. This option is
available for NSArray and NSIndexSet classes; its behavior is
undefined for NSDictionary and NSSet classes, or when combined with
the NSEnumerationConcurrent flag.</em></p>
</blockquote>

<p>现在循环通常写成 - </p>

<pre><code>for ( int i=0 ; i&lt; count; i++ )
{
   //stuff
}
</code></pre>

<p>我的问题是,为什么 NSEnumerationReverse 存在而 NSEnumerationForward 不存在。为什么 Apple 认为反向循环比从第一个索引循环更好。</p>

<p>反向循环遍历数组有性能优势吗?还是我没有正确理解 <code>NSEnumerationReverse</code>?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>声明的 <code>NSEnumerationOptions</code> 用于您想要使用非标准行为的时候——前向迭代是自动使用的默认行为<strong>除非</strong>您指定不同的选项。 </p>

<p>要向前迭代,只需将 <code>0</code> 传递给枚举选项参数即可。</p>

<p>还要注意,由于无论如何您都为选项传递了零,因此您也可以只使用不接受任何选项的 <code>enumerateObjectsUsingBlock:</code> 方法,否则会执行完全相同的操作(并且打字更短)。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 为什么 NSEnumerationReverse 而不是 NSEnumerationForward,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/24205509/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/24205509/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 为什么 NSEnumerationReverse 而不是 NSEnumerationForward