ios - Objective-C 泛型安全数组/字典字面量
<p><p>是否可以启用警告以停止将数组和字典字面量分配给泛型类型不匹配的变量?</p>
<pre><code>// I expect a warning here.
// I'm assigning an NSArray<NSNumber *> to an NSArray<NSString *>
NSArray<NSString *> *strings = @[@1,
@2,
@3,
];
// I expect a warning here.
// NSDictionary<NSNumber *, NSNumber *>to an
// NSDictionary<NSString *, NSString *>
NSDictionary<NSString *, NSString *> *stringsByString = @{@1 : @1,
@2 : @2,
@3 : @3,
};
</code></pre>
<p>我使用 Xcode 版本 7.2 (7C68) 创建了一个新的 iOS 项目,并且没有收到上述分配的警告。</p>
<p>我知道我可以分配创建可变集合并手动分配每个值,并获得预期的警告:</p>
<pre><code>NSMutableArray<NSString *> *strings = ;
;
</code></pre>
<blockquote>
<p>Incompatible pointer types sending 'NSNumber *' to parameter of type
'NSString * _Nonnull'</p>
</blockquote>
<pre><code>NSMutableDictionary<NSString *, NSString *> *stringsByString = ;
stringsByString[@"1"] = @1;
</code></pre>
<blockquote>
<p>Incompatible pointer types sending 'NSNumber *' to parameter of type 'NSString * _Nullable'</p>
</blockquote>
<p>但我希望更简洁。</p>
<p>整个问题比简单地调用 <code>-\[NSMutableDictionary setObject:forKey:\</code> <a href="https://stackoverflow.com/q/34916217/9636" rel="noreferrer noopener nofollow">which doesn't work</a> 更广泛。 .</p>
<pre><code>stringsByString[@2] = @"2";
</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]