ハッシュテーブルで要素数を返します
unsigned int NSCountHashTable ( NSHashTable * table );
解説
ハッシュテーブルで要素数を返します。
返り値
引数
( NSHashTable * )table
フレームワーク
Foundation
クラス
NSCountHashTable
Function
使用可能
10.0
参照
例文
#import "MyObject.h" @implementation MyObject - (IBAction)myAction:(id)sender { NSHashTable *hTable = NSCreateHashTable(NSNonOwnedPointerHashCallBacks, 10); NSHashInsert(hTable, @"aaa"); NSHashInsert(hTable, @"bbb"); NSHashInsert(hTable, @"ccc"); NSLog([NSString stringWithFormat:@"%u",NSCountHashTable(hTable)]); } @end