Objective-C:Foundation框架-常用类-NSDictionary

  与NSString、NSArray一样,NSDictionary是不可变的,其对应可变类型为NSMutableDictionary。其用法如下:

#import <Foundation/Foundation.h>

@interface Student : NSObject
@property (nonatomic, retain) NSString *name;

+ (id)studentWithName:(NSString *)name;
@end

#import "Student.h"

@implementation Student

+ (id)studentWithName:(NSString *)name {
    Student *stu = [[Student alloc] init];
    stu.name = name;
    return [stu autorelease];
}

- (void)dealloc {
    NSLog(@"%@被销毁了", _name);
    // 释放name
    [_name release];
    [super dealloc];
}
@end
#import <Foundation/Foundation.h>
#import "Student.h"

#pragma mark 字典的初始化
void dictCreate() {
    // NSDictionary是不可变的
    NSDictionary *dict = [NSDictionary dictionaryWithObject:@"v" forKey:@"k"];

    // 最常用的初始化方式
    dict = [NSDictionary dictionaryWithObjectsAndKeys:
            @"v1", @"k1",
            @"v2", @"k2",
            @"v3", @"k3", nil];

    NSArray *objects = [NSArray arrayWithObjects:@"v1", @"v2", @"v3", nil];
    NSArray *keys = [NSArray arrayWithObjects:@"k1", @"k2", @"k3", nil];
    dict = [NSDictionary dictionaryWithObjects:objects forKeys:keys];
    NSLog(@"%@", dict);
}

#pragma mark 字典的基本用法
void dictUse() {
    NSDictionary *dict = [NSDictionary dictionaryWithObjectsAndKeys:
            @"v1", @"k1",
            @"v2", @"k2",
            @"v3", @"k3", nil];

    // count是计算有多少个键值对(key-value)
    NSLog(@"count=%zi", dict.count);

    // 由于NSDictionary是不可变的,所以只能取值,而不能修改值
    id obj = [dict objectForKey:@"k2"];
    NSLog(@"obj=%@", obj);

    // 将字典写入文件中
    NSString *path = @"/Users/apple/Desktop/dict.xml";
    [dict writeToFile:path atomically:YES];

    // 从文件中读取内容
    dict = [NSDictionary dictionaryWithContentsOfFile:path];
    NSLog(@"dict=%@", dict);
}

#pragma mark 字典的用法
void dictUse2() {
    NSDictionary *dict = [NSDictionary dictionaryWithObjectsAndKeys:
                          @"v1", @"k1",
                          @"v2", @"k2",
                          @"v3", @"k3", nil];
    // 返回所有的key
    NSArray *keys = [dict allKeys];
    //NSLog(@"keys=%@", keys);

    NSArray *objects = [dict allValues];
    //NSLog(@"objects=%@", objects);

    // 根据多个key取出对应的多个value
    // 当key找不到对应的value时,用marker参数值代替
    objects = [dict objectsForKeys:[NSArray arrayWithObjects:@"k1", @"k2", @"k4", nil] notFoundMarker:@"not-found"];
    NSLog(@"objects=%@", objects);
}

#pragma mark 遍历字典
void dictFor() {
    NSDictionary *dict = [NSDictionary dictionaryWithObjectsAndKeys:
                          @"v1", @"k1",
                          @"v2", @"k2",
                          @"v3", @"k3", nil];
    // 遍历字典的所有key
    for (id key in dict) {
        id value = [dict objectForKey:key];
        NSLog(@"%@=%@", key, value);
    }
}

#pragma mark 遍历字典2
void dictFor2() {
    NSDictionary *dict = [NSDictionary dictionaryWithObjectsAndKeys:
                          @"v1", @"k1",
                          @"v2", @"k2",
                          @"v3", @"k3", nil];
    // key迭代器
    NSEnumerator *enumer = [dict keyEnumerator];
    id key = nil;
    while ( key = [enumer nextObject]) {
        id value = [dict objectForKey:key];
        NSLog(@"%@=%@", key, value);
    }

    // 对象迭代器
    // [dict objectEnumerator];
}

#pragma mark 遍历字典3
void dictFor3() {
    NSDictionary *dict = [NSDictionary dictionaryWithObjectsAndKeys:
                          @"v1", @"k1",
                          @"v2", @"k2",
                          @"v3", @"k3", nil];
    [dict enumerateKeysAndObjectsUsingBlock:
     ^(id key, id obj, BOOL *stop) {
        NSLog(@"%@=%@", key, obj);
    }];
}

#pragma mark
void dictMemory() {
    Student *stu1 = [Student studentWithName:@"stu1"];
    Student *stu2 = [Student studentWithName:@"stu2"];
    Student *stu3 = [Student studentWithName:@"stu3"];

    // 一个对象称为字典的key或者value时,会做一次retain操作,也就是计数器会+1
    NSDictionary *dict = [NSDictionary dictionaryWithObjectsAndKeys:
                          stu1, @"k1",
                          stu2, @"k2",
                          stu3, @"k3", nil];

    // 当字典被销毁时,里面的所有key和value都会做一次release操作,也就是计数器会-1
}
时间: 2024-09-29 08:33:54

Objective-C:Foundation框架-常用类-NSDictionary的相关文章

黑马程序员——Foundation框架常用类(NSNumber/NSValue)

------Java培训.Android培训.iOS培训..Net培训.期待与您交流! ------ 简介 引入:NSArray.NSSet.NSDictionary这些OC集合都只能存放OC对象,不能存放基本数据类型(int.char.double...).如果我们想将基本数据类型存到这些OC集合中,那么我们将基本数据类型(int.char.double...)包装成OC对象,那么就可以存到OC集合中.NSNumber可以将基本数据类型包装为OC对象. NSValue:用来存储一个C或者OC的

Objective-C:Foundation框架-常用类-NSNumber

NSArray.NSDictionary是不可以存储C语言中的基本数据类型的.NSNumber可以将基本数据类型包装成对象,这样可以间接将基本数据类型存进NSArray.NSDictionary等集合类中.用法如下: #import <Foundation/Foundation.h> void number() { // 将int类型的10 包装成 一个NSNumber对象 NSNumber *number = [NSNumber numberWithInt:10]; NSLog(@"

黑马程序员——Foundation框架常用类(NSDate)

------Java培训.Android培训.iOS培训..Net培训.期待与您交流! ------ 简介 NSDate:用于保存时间值的一个OC类,同时提供了一些方法来处理一些与时间相关的事.NSDate对象用来表示一个具体的时间点.NSDate是一个类簇,我们所使用的NSDate对象,都是NSDate的私有子类的实体.NSDate存储的是GMT时间,使用的时候会根据 当前应用 指定的 时区 进行时间上的增减,以供计算或显示. NSDate 1.时间对象的基本使用 //第一种创建方式(里面存储

Objective-C:Foundation框架-常用类-NSValue

NSNumber是NSValue的子类,前者只能包装数字,后者可以包装任意值.NSArray.NSDictionary只能存储OC对象,不能存储结构体.因此,如果想要在NSArray.NSDictionary里放结构体,可以曲线救国,将结构体包装成OC对象,再放到NSArray.NSDictionary等集合类中. void value() { CGPoint point = CGPointMake(10, 10); // 将结构体变量包装成一个对象 NSValue *value = [NSVa

从头开始-07.Foundation框架常用结构体

一.Foundation框架常用结构体NSRange\CGRange.NSPoint\CGPoint.NSSize\CGSize. NSRect\CGRect 的使用 1.  基本使用: //NSRange的使用 NSRange r1 = NSMakeRange(2, 4); //第一个参数为.location 第二个参数为.length NSString *str = @"学习OC"; NSRange range = [str rangeOfString:@"学习"

OC学习篇之---Foundation框架中的NSDictionary类以及NSMutableDictionary类

今天来看一下Foundation框架中的NSDictionary类,NSMutableDictionary类,这个和Java中的Map类很想,OC中叫字典,Java中叫Map,还有字典是无序的,这个和NSArray不一样,Java中的Map也是无序的,通过hash值去检索元素的. 一.NSDictionary类 [objc] view plain copy // //  main.m //  19_NSDictionary // //  Created by jiangwei on 14-10-

Objective - c Foundation 框架详解2

Objective - c  Foundation 框架详解2 Collection Agency Cocoa provides a number of collection classes such as NSArray and NSDictionary whose instances exist just to hold onto other objects. cocoa 提供了一系列的集合类,例如,NSarray,NSdictionary.它们存在的目的就是为了保持其他对象. 1.1.1N

Foundation Kit常用类介绍

Foundation Kit是OS X类库和IOS类库共享的基础类库,里面提供了很多封装类,具体可以见https://developer.apple.com/library/ios/documentation/Cocoa/Reference/Foundation/ObjC_classic/,下面介绍一些常用类. 1.字符串类:NSString和NSMutableString. NSMutableString继承于NSString,两者的区别是:NSMutableString是可变的,而NSStr

Foundation框架常用数据类型和NSAutoreleasePool自动释放池解析

第一.NSAutoreleasePool自动释放池解析 1.自动释放池的物理实现 自动释放池用栈来实现,当你创建一个新的自动释放池是,会压栈到栈顶,接受autorelease消息的对象也会被压入到栈顶 NSAutoreleasePool实现延时释放,内部包含一个数组(NSMutableArray),用来保存声名为autorelease的所有对象.如果一个对象声明为autorelease,系统所做的工作就是把这个对象加入到这个数组中去.NSAutoreleasePool自身在销毁的时候,会遍历一遍