练习(字典)

来源:互联网 发布:c语言||什么意思 编辑:程序博客网 时间:2024/04/28 21:35
#import <Foundation/Foundation.h>

int main (int argc, const char * argv[])
{

    @autoreleasepool {
        
        // insert code here...
        NSMutableDictionary *student = [NSMutableDictionary dictionary];
        [student setObject:@"历史上的曹操性格非常复杂,陈寿认为曹操在三国的历史上“明略最优”,“揽申、商之法术,该韩、白之奇策,官方授材,各因其器,矫情任算,不念旧恶”" forKey:@"曹操"];
        [student setObject:@"诸葛亮治国治军的才能,济世爱民、谦虚谨慎的品格为后世各种杰出的历史人物树立了榜样" forKey:@"诸葛亮"];
        [student setObject:@"陈寿对刘备的评价是:“宏毅宽厚,知人待士,盖有高祖之风,英雄之器焉。及其举国托孤于诸葛亮,而心神无二,诚君丞之至公,古今之盛轨也。机权干略,不逮魏武,是以基宇亦狭”" forKey:@"刘备"];
        
        NSLog(@"曹操:%@",[student objectForKey:@"曹操"]);
        NSLog(@"诸葛亮:%@",[student objectForKey:@"诸葛亮"]);
        NSLog(@"刘备:%@",[student objectForKey:@"刘备"]);
        
    }
    return 0;
}