Swift学习笔记之基本数据类型-数组与字典

1.  代码示例

//: Playground - noun: a place where people can play

import Cocoa

//声明数组
var myList = ["hello" , 3]


//打印数组中的值
for item in myList {
    print(item)
}
print("\n")

//打印数组中指定的值
print("数组中第二个值为 \(myList [1])\n")


//打印数组的大小
print("数组长度为 \(myList.count)\n")


//往数组中插入新的数据
myList.insert("world", atIndex: 1)
for item in myList {
    print(item)
}
print("\n")


//定义一个字典
var testDictory:Dictionary = [3:"A", 5:"B", 7:"C"]

//获取字典中的某个元素
print("key为5对应的值为\(testDictory[5]!)\n")

//更新字典中的某个元素值
testDictory.updateValue("D", forKey: 7)
print("key为7更新后的值为\(testDictory[7]!)\n")

//删除字典中某个key对应的值
testDictory.removeValueForKey(3)
print(testDictory[3])

//删除字典中的键值对
testDictory.removeAtIndex(testDictory.indexForKey(5)!)


//循环打印出字典中的值
for item in testDictory.keys {
    print(testDictory[item]!)
}

//备注
//1. 数组是可变的,一维到多维
//2. 字典是不可变的,是二维的,而且要求key为唯一
2. 运行结果

Swift学习笔记之基本数据类型-数组与字典_第1张图片

你可能感兴趣的:(iOS开发,swift)