菜鸟教程小白 发表于 2022-12-13 15:09:03

ios - Objective-C 泛型安全数组/字典字面量


                                            <p><p>是否可以启用警告以停止将数组和字典字面量分配给泛型类型不匹配的变量?</p>

<pre><code>// I expect a warning here.
// I&#39;m assigning an NSArray&lt;NSNumber *&gt; to an NSArray&lt;NSString *&gt;
NSArray&lt;NSString *&gt; *strings = @[@1,
                                 @2,
                                 @3,
                                 ];

// I expect a warning here.
// NSDictionary&lt;NSNumber *, NSNumber *&gt;to an
// NSDictionary&lt;NSString *, NSString *&gt;
NSDictionary&lt;NSString *, NSString *&gt; *stringsByString = @{@1 : @1,
                                                          @2 : @2,
                                                          @3 : @3,
                                                          };
</code></pre>

<p>我使用 Xcode 版本 7.2 (7C68) 创建了一个新的 iOS 项目,并且没有收到上述分配的警告。</p>

<p>我知道我可以分配创建可变集合并手动分配每个值,并获得预期的警告:</p>

<pre><code>NSMutableArray&lt;NSString *&gt; *strings = ;
;
</code></pre>

<blockquote>
<p>Incompatible pointer types sending &#39;NSNumber *&#39; to parameter of type
&#39;NSString * _Nonnull&#39;</p>
</blockquote>

<pre><code>NSMutableDictionary&lt;NSString *, NSString *&gt; *stringsByString = ;
stringsByString[@&#34;1&#34;] = @1;
</code></pre>

<blockquote>
<p>Incompatible pointer types sending &#39;NSNumber *&#39; to parameter of type &#39;NSString * _Nullable&#39;</p>
</blockquote>

<p>但我希望更简洁。</p>

<p>整个问题比简单地调用 <code>-\[NSMutableDictionary setObject:forKey:\</code> <a href="https://stackoverflow.com/q/34916217/9636" rel="noreferrer noopener nofollow">which doesn&#39;t work</a> 更广泛。 .</p>

<pre><code>stringsByString[@2] = @&#34;2&#34;;
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>不,Objective-C 泛型中没有类型推断。因此,数组和字典字面量不知道它们在什么上下文中使用,并且必须允许任何东西作为键和值。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - Objective-C 泛型安全数组/字典字面量,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/35896636/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/35896636/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - Objective-C 泛型安全数组/字典字面量