swift数组与字典类型操作使用

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了swift数组与字典类型操作使用相关的知识,希望对你有一定的参考价值。

var studentList : [String] = ["张三","李四","王五"];


//数组插入

studentList.insert("刘备",atIndex: 0)


//数组追加,每次调用只能追加一个元素

studentList.append("赵云");


//数组追加多元素

studentList += ["关羽","张飞"];


//数组遍历

for student in studentList {

    print(student);

}


打印结果:

刘备

张三

李四

王五

赵云

关羽

张飞


//字典类型 如果拿java中的类型举例的话,与Map相似

var studentDictionary : Dictionary<Int, String> = [102 : "张三",105 : "李四",109 : "王五"]

print("字典遍历keys");

for studentID in studentDictionary.keys{

    print("学生ID: \(studentID)");

}

print("字典遍历values");

for studentName in studentDictionary.values{

    print("学生姓名:\(studentName)")

}


print("字典遍历键值对形式");

for (studentID, studentName) in studentDictionary{

    print("学生ID:\(studentID) 学生姓名:\(studentName)")

}


//String类型的遍历,目前 xcode7 后不支持这种方式遍历了,如果使用xcode6.2则可以编译通过

var str : String = "10.9989";

for number in str {


}


本文出自 “10271496” 博客,请务必保留此出处http://10281496.blog.51cto.com/10271496/1750322

以上是关于swift数组与字典类型操作使用的主要内容,如果未能解决你的问题,请参考以下文章

Swift4.2~数组和字典(Array, Dictionary)基本类型转换

swift中数组操作

swift实现遍历嵌套字典并修改其中的值

swift实现遍历嵌套字典并修改其中的值

swift实现遍历嵌套字典并修改其中的值

Swift - 使用 map/reduce/flatmap 将数组字典减少为相同类型的单个数组