zoukankan      html  css  js  c++  java
  • NSDictionary 初始化

    NSDictionary *dic1=[NSDictionary dictionaryWithObject:@"1" forKey:@"a"];
           NSLog(@"%@",dic1);
           /*结果:
            {
            a = 1;
            } */
           
           //常用的方式
           NSDictionary *dic2=[NSDictionary dictionaryWithObjectsAndKeys:
                           @"1",@"a", @"2",@"b", @"3",@"c", nil];
                               
           NSLog(@"%@",dic2);
           /*结果:
           {
            a = 1;
            b = 2;
            c = 3; }
           */
           
           NSDictionary *dic3=[NSDictionary dictionaryWithObjects:[NSArray arrayWithObjects:@"1",@"2", nil] forKeys:[NSArray arrayWithObjects:@"a",@"b", nil]];
           NSLog(@"%@",dic3);
           /*结果:
           {
            a = 1;
            b = 2;
            }
           */
           
           //更简单的方式
           NSDictionary *dic4=@{@"1":@"a",@"2":@"b",@"3":@"c"};
           NSLog(@"%@",dic4);
           /*结果:
            {
            1 = a;
            2 = b;
            3 = c; }
            */
     
  • 相关阅读:
    python字典实现原理-哈希函数-解决哈希冲突方法
    ElasticSearch-倒排索引
    ElasticSearch-核心概念
    MarkdownPad2基础语法
    下载python3.6,进行编译安装,运行django程序
    linux-指令1
    注解和反射
    Htlm和Css
    JAVASE加强
    网络编程
  • 原文地址:https://www.cnblogs.com/kluan/p/4819410.html
Copyright © 2011-2022 走看看