What is the Java equivalent of Objective-C#39;s NSDictionary?(Objective-C 的 NSDictionary 的 Java 等价物是什么?)
问题描述
Objective-C 的 NSDictionary
在 Java 中最接近的实现是什么?对我来说,它看起来像 HashMap<String, Object>
,但我对 Objective-C 很陌生.
What is the closest implementation of Objective-C's NSDictionary
in Java? To me, it looks like HashMap<String, Object>
, but I'm very new to Objective-C.
谢谢
推荐答案
NSDictionary
是一个类簇(参见 The Cocoa Fundamentals Guide),这意味着实际的实现对你是隐藏的,API用户.事实上,Foundation 框架会在运行时根据数据量等选择合适的实现.另外,NSDictionary
可以将任何 id
作为 key,而不仅仅是 NSString
(当然key对象的-hash
必须是常量).
NSDictionary
is a class cluster (see the "Class Cluster" section in The Cocoa Fundamentals Guide), meaning that the actual implementation is hidden from you, the API user. In fact, the Foundation framework will choose the appropriate implementation at run time based on amount of data etc. In addition, NSDictionary
can take any id
as a key, not just NSString
(of course, the -hash
of the key object must be constant).
因此,最接近的模拟可能是 Map
.
Thus, closest analog is probably Map<Object,Object>
.
这篇关于Objective-C 的 NSDictionary 的 Java 等价物是什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Objective-C 的 NSDictionary 的 Java 等价物是什么?
基础教程推荐
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- 降序排序:Java Map 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01