1、字符串
// 1.String的遍历
var str = "Hello, playground"
for s in str.characters {
print(s)
}
// 2.String的拼接
// 1>两个字符串之间的拼接
let str1 = "my name is"
var str2 = " why"
str2 = str1 + str2
// 2>字符串和其他类型的拼接
let age = 18
let height = 1.88
// 在字符串中拼接其他类型的变量/常量
// 格式:(变量/常量名字)
let str3 = "age is (age), height is (height)"
// 3>字符串的格式化
// 2:3 -> 02:03
let min = 2
let second = 3
let time0 = "0(min):0(second)"
let time1 = String(format: "%02d:%02d", arguments: [min, second])
// 3.String的截取
let urlString = "www.baidu.com"
// 提示:不要使用String方法截取.index非常不好创建
// urlString.substringFromIndex(index: Index)
// String转成NSString,只需要在String后面跟上:as NSString
let prefixString = (urlString as NSString).substring(to: 3)
let middelString = (urlString as NSString).substring(with: NSRange(location: 4, length: 5))
let subfixString = (urlString as NSString).substring(from: 10)
2、数组
// 定义一个可变数组
// Swift开始中,可以使用AnyObject代替NSObject
var names : [Any] = Any
// 1.对数组的基本操作
// 1> 添加元素
names.append("why")
names.append("失败")
names.append("成功")
names.append(18)
names.append(1.88)
// 2> 删除元素
names.removeLast()
names.remove(at: 3)
names
// 3> 修改元素
names[0] = "yz"
names
// 4> 取出数组中的值
names[2]
// 2.数组的遍历
// 1> 通过下标值遍历
for i in 0..<names.count {
print(names[i])
}
// 2> forin方式
for item in names {
print(item)
}
// 3> 区间遍历
for i in 0..<2 {
print(names[i])
}
for item in names[1..<3] {
print(item)
}
// 3.数组的合并
// 1> 类型相同的数组的合并
let array1 = ["why", "+86 110", 18] as [Any]
let array2 = [1.88, "china"] as [Any]
let array3 = array1 + array2
// 2> 类型不同的数组的合并
let names1 = ["why", "yz", "lmj"]
let ages = [18, 20, 25]
var array4 = Any
for item in names1 {
array4.append(item)
}
for item in ages {
array4.append(item)
}
array4
数组操作
// 定义一个可变数组
// Swift开始中,可以使用AnyObject代替NSObject
var names : [Any] = Any
// 1.对数组的基本操作
// 1> 添加元素
names.append("why")
names.append("失败")
names.append("成功")
names.append(18)
names.append(1.88)
// 2> 删除元素
names.removeLast()
names.remove(at: 3)
names
// 3> 修改元素
names[0] = "yz"
names
// 4> 取出数组中的值
names[2]
// 2.数组的遍历
// 1> 通过下标值遍历
for i in 0..<names.count {
print(names[i])
}
// 2> forin方式
for item in names {
print(item)
}
// 3> 区间遍历
for i in 0..<2 {
print(names[i])
}
for item in names[1..<3] {
print(item)
}
// 3.数组的合并
// 1> 类型相同的数组的合并
let array1 = ["why", "+86 110", 18] as [Any]
let array2 = [1.88, "china"] as [Any]
let array3 = array1 + array2
// 2> 类型不同的数组的合并
let names1 = ["why", "yz", "lmj"]
let ages = [18, 20, 25]
var array4 = Any
for item in names1 {
array4.append(item)
}
for item in ages {
array4.append(item)
}
array4
3、字典
// 字典的类型:Dictionary
// 不可变字典:let修饰
// 可变字典:var修饰
// 不可变字典
// 1>方式一:
let dict1 : Dictionary<String, Any> = ["name" : "why", "age" : 18]
// dict1["height"] = 1.88
// 2>方式二:
let dict2 : [String : Any] = ["name" : "why", "age" : 18]
// 3>方式三:
let dict3 = ["name" : "why", "age" : 18] as [String : Any]
// 可变字典
// 1> 方式一:
var dict4 = Dictionary<String, AnyObject>()
// 2> 方式二:
var dict5 = String : AnyObject
// 3> 方式三:
var dict6 = ["name" : "why", "age" : 18] as [String : Any]
字典操作
// 定义一个可变字典
var dict = String : Any
// 1.对字典的基本操作
// 1> 添加元素
dict["name"] = "why"
dict["age"] = 18
dict["height"] = 1.88
dict["weight"] = 60.0
dict
// 2> 删除元素
// dict.removeAll()
dict.removeValue(forKey: "weight")
// 3> 修改元素
// 注意:通过该方式来修改元素,如果有对应的键,则修改.如果没有对应的键,则添加元素
dict["name"] = "lmj"
dict
// 4> 取出
dict["age"]
// 2.对字典的遍历
// 1> 遍历字典中的所有的键
for key in dict.keys {
print(key)
}
// 2> 遍历字典中所有的值
for value in dict.values {
print(value)
}
// 3> 遍历所有的键值对
for (key, value) in dict {
print(key)
print(value)
}
// 3.字典的合并
let dict1 = ["name" : "why", "age" : 18] as [String : Any]
var dict2 = ["phoneNum" : "+86 110", "height" : 1.88] as [String : Any]
// 注意:字典无论类型是否一致,都不可以直接相加来合并
//let dict3 = dict1 + dict2
for (key1, value1) in dict1 {
dict2[key1] = value1
}
dict2
3、元组
// 定义元组
// 方式一:
let a = ("why", 18, 1.88)
// 方式二:常用
let b = (name : "why", age : 18, height : 1.88)
// 方式三:
let (name, age, height) = ("why", 18, 1.88)
// 元组的使用
let error = (404, "Not Found")
error.0
error.1
let error1 = (errorCode : 404, errorInfo : "Not Found")
error1.errorCode
error1.errorInfo
let (errorCode1, errorInfo1) = (404, "Not Found")
errorCode1
errorInfo1