forKey 是什么意思?它有什么作用?

发布于 2024-10-12 15:09:15 字数 85 浏览 6 评论 0原文

我猜测它为添加到 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

别想她 2024-10-19 15:09:15

字典是包含键值对的数据结构。它们也称为哈希表。所以是的,你使用一个键来引用它对应的值。

对于以下字典:

// Pseudo-code, not actual Objective-C code, merely for illustration
// (This {} syntax would be really nice to have though...)
NSDictionary *dict = {
    @"one" => NSNumber (1),
    @"two" => NSNumber (2)
};

以下代码生成 1

NSNumber *one = [dict objectForKey:@"one"];
NSLog(@"%d", [one intValue]);

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:

// Pseudo-code, not actual Objective-C code, merely for illustration
// (This {} syntax would be really nice to have though...)
NSDictionary *dict = {
    @"one" => NSNumber (1),
    @"two" => NSNumber (2)
};

The following code yields 1:

NSNumber *one = [dict objectForKey:@"one"];
NSLog(@"%d", [one intValue]);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文