• Swift字典


    字典初始化

    基本语法:

    [key 1: value 1, key 2: value 2, key 3: value

    3]

     var   airports:    Dictionary<String,       String>    = ["TYO": "Tokyo", "DUB":"Dublin"]

     字典追加元素

     var   airports:    Dictionary<String,       String>    = ["TYO": "Tokyo", "DUB":"Dublin"] airports["LHR"] = "London"

     println("The dictionary of airports contains

    (airports.count) items.")

    字典删除元素

    通过 removeValueForKey(key)方法删除

     var airports: Dictionary<String, String> =

    ["TYO": "Tokyo", "DUB": "Dublin"]

    if         let          removedValue                   =

    airports.removeValueForKey("DUB") {

    println("The removed airport's nameis (removedValue).")

    } else {

    println("The airports dictionary doesnot contain a value forDUB.")

    }

    字典长度

    使用 count 属性。

     var   airports:    Dictionary<String,       String>    = ["TYO": "Tokyo", "DUB":"Dublin"]

     println("The dictionary of airports contains

    (airports.count) items.")

    字典遍历

    1.遍历方法

     var airports = ["TYO": "Tokyo", "DUB": "Dublin"]

     for (airportCode,airportName) in airports {

     println("(airportCode): (airportName)")

     }

    2.遍历键和值

    for airportCode in airports.keys {

     println("Airport code: (airportCode)")

     }

     for airportName in airports.values {

     println("Airport name: (airportName)")

     }

    获得键或值的数组:

    let airportCodes= Array(airports.keys)

     // airportCodes is ["TYO", "LHR"]

    let airportNames = Array(airports.values)

      // airportNamesis ["Tokyo","London Heathrow"]

    Swift交流讨论论坛论坛:http://www.cocoagame.net

    欢迎加入Swift技术交流群:362298485

  • 相关阅读:
    CAsyncSocket网络编程(MFC)
    CSDN回帖得分大全(近两年)
    VC:使用Windows Socket开发应用程序
    MFC对Socket编程的支持
    计算机操作系统
    计算机基础
    计算机发展历史
    iOS开发之国际化
    iOS开发之iOS程序偏好设置(Settings Bundle)的使用
    iOS中使用RegexKitLite来试用正则表达式 使用ARC 20个错误解决办法
  • 原文地址:https://www.cnblogs.com/iOS-Blog/p/3800247.html
Copyright © 2020-2023  润新知