forKey 是什么意思?它有什么作用?
我猜测它为添加到 NSMutableDictionary 或 NSDictionary 的对象提供了一个名称来访问它。但是,我必须确认一下。有人能告诉我吗?
I'm guessing that it gives the object that is being added to the NSMutableDictionary or NSDictionary a name to access it. But, I have to confirm it. Can anybody tell me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
字典是包含键值对的数据结构。它们也称为哈希表。所以是的,你使用一个键来引用它对应的值。
对于以下字典:
以下代码生成
1
:Dictionaries are data structures that contain key-value pairs. They're also known as hash tables. So yes, you use a key to refer to its corresponding value.
For the following dictionary:
The following code yields
1
: