将 NSMutableDictionary 的内容复制到另一个 NSMutableDictionary 中?

发布于 2024-10-10 08:48:35 字数 226 浏览 5 评论 0原文

我有一个 NSMutableDictionary,其中每个元素都是另一个字典。将其内容复制到另一个 NSMutableDictionary 的最佳方法是什么?我尝试过使用:

firstDictionary = [NSMutableDictionary dictionaryWithDictionary:secondDictionary];

但是不确定这是否是最好的方法。

I have an NSMutableDictionary each element of which is another dictionary. What is the best way I can copy its contents into another NSMutableDictionary? I've tried using:

firstDictionary = [NSMutableDictionary dictionaryWithDictionary:secondDictionary];

However not sure if this is the best way to do it.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(4

南城追梦 2024-10-17 08:48:35

您还可以使用 copy 和 mutableCopy 在可变和非可变字典之间跳转。

- (void) someFunc:(NSMutableDictionary *)myDict {
    NSDictionary *anotherDict = [myDict copy];
    NSMutableDictionary *yetAnotherDict = [anotherDict mutableCopy];
}

You can also jump between mutable and non-mutable dictionaries using copy and mutableCopy.

- (void) someFunc:(NSMutableDictionary *)myDict {
    NSDictionary *anotherDict = [myDict copy];
    NSMutableDictionary *yetAnotherDict = [anotherDict mutableCopy];
}
小鸟爱天空丶 2024-10-17 08:48:35

检查 NSDictionary initWithDictionary:copyItems: 方法。

它可以通过调用 item 类的 copyWithZone: 方法来深度复制元素。您必须自己在方法中复制字段。

Check the NSDictionary initWithDictionary:copyItems: method.

It it enables deep copying of elements thru calling copyWithZone: method of item's class. You will have to take care of copying the fields yourself within the method.

演多会厌 2024-10-17 08:48:35

“最好”是什么意思?
无论如何,我在这里列出了一些方法:

  1. firstDictionary =
    [NSMutableDictionary
    DictionaryWithDictionary:第二个字典];
  2. [[NSDictionary 分配]
    initWithDictionary:第二个字典];
    //不要忘记稍后
  3. 使用深拷贝
  4. 释放使用浅拷贝

What do you mean by "best"?
Anyway, I listed some ways here:

  1. firstDictionary =
    [NSMutableDictionary
    dictionaryWithDictionary:secondDictionary];
  2. [[NSDictionary alloc]
    initWithDictionary:secondDictionary];
    //don't forget to release later
  3. using deep copy
  4. using shallow copy
带刺的爱情 2024-10-17 08:48:35

遵守 NSCopying 协议,对每个对象执行 copyWithZone 操作。

如果 NsMutableDictionary 包含另一个字典,而该字典又包含另一个字典,那么你需要对所有级别的每个字典执行 copyWithZone 。

Conform to NSCopying Protocol and do copyWithZone on every object.

If NsMutableDictionary contains another dictionary, which contains another dictionary,, then you need to do copyWithZone on each dictionary at all levels.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文