Swift - 数组

简介: Swift - 数组

话不多说,直接上正题:


使用构造语法创建特定类型的空数组

//type根据自己的需要定义为Int或者String等等
var someArray = [type]()

创建一个初始化大小数组的语法:

//NumbeOfElements为数组的数量,InitialValue为每一位给的初始数据
var thisArray = [type](count: NumbeOfElements, repeatedValue: InitialValue)
比如:
var thatArray = [Int](count: 3, repeatedValue: 0)

以字面量来创建:

var thisArray:[Int] = [1, 2, 3]

访问数组和Object-C一样:

var thisArray:[Int] = [1, 2, 3]
thisArray[1]

修改数组

var thisArray = [Int]()
//添加(你所看到的()和[]都不可省)
thisArray.append(1)
thisArray.append(2)
thisArray += [3]
//修改数组
thisArray[0]=10

便利数组在for 循环中说过,这里再次举例说明:

var thisArray = [String]()
thisArray.append("iOS")
thisArray.append("android")
thisArray.append("h5")
thisArray+= ["PHP"]
for item in thisArray {
   print(item)
}
如果我们同时需要每个数据项的值和索引值
for (index, item) in thisArray.enumerate() {
   print("在 index = \(index) 位置上的值为 \(item)")
}

数组的删除方法:

removeAtIndex()
removeFirst()
removeAll()
removeLast()

合并数组:数组A + 数组B

数组有isEmpty方法,返回true或false

数组保留了.count方法,得到数组的数量

目录
相关文章
|
8月前
|
存储 安全 Swift
在Swift中,数组(Array)
在Swift中,数组(Array)
62 3
|
Swift 索引
18 在Swift中创建一个数组
在Swift中创建一个数组
346 0
|
2月前
|
存储 Swift iOS开发
Swift 数组
10月更文挑战第27天
26 3
|
8月前
|
存储 安全 Swift
【Swift开发专栏】Swift中的集合类型:数组、字典与集合
【4月更文挑战第30天】本文探讨Swift的三种内置集合类型:数组、字典和集合。数组是有序元素集合,支持动态大小调整和类型安全;字典是无序键值对,适用于快速查找;集合是无序不重复元素集合,适合检查元素存在性和集合运算。理解这些特性和用法能提升Swift编程效率。
75 1
|
8月前
|
Swift 索引
在Swift中,要删除数组中特定索引位置的元素
在Swift中,要删除数组中特定索引位置的元素
135 3
|
8月前
|
存储 安全 Swift
在Swift编程语言中,数组(Array)
在Swift编程语言中,数组(Array)
83 3
|
8月前
|
存储 安全 Swift
在Swift编程语言中,数组
在Swift编程语言中,数组
62 2
|
8月前
|
存储 Swift
在Swift中,数组(Arrays)和字典
在Swift中,数组(Arrays)和字典
66 1
|
Swift
Swift - 用装有控制器name的数组for循环批量创建控制器(string转UIViewController)
Swift - 用装有控制器name的数组for循环批量创建控制器(string转UIViewController)
109 0
|
Swift 索引
Swift实用小册04:数组、集合和字典的使用
Swift实用小册04:数组、集合和字典的使用
250 0
Swift实用小册04:数组、集合和字典的使用