1
我需要了解NSDictionary
算法在iOS中的工作原理嗎?NSDictionary算法如何在iOS中工作?
我假設它在內部使用哈希算法,就像在Java中使用HashMap
使用bucket
和hashcode
的概念。
NSDictionary的機制是否與Java中的HashMap
相同?
我需要了解NSDictionary
算法在iOS中的工作原理嗎?NSDictionary算法如何在iOS中工作?
我假設它在內部使用哈希算法,就像在Java中使用HashMap
使用bucket
和hashcode
的概念。
NSDictionary的機制是否與Java中的HashMap
相同?
NSDictionary
使用CFDictionary
這是開源由Apple here。
另見Mike Ash的Let's Build NSMutableDictionary。
請搜索互聯網,有關於該主題的教程ton.For [exmaple](http://rypress.com/tutorials/objective-c/data-types/nsdictionary) –