The basic operations of the array in Swift are as follows:
(1) Calculating the length of the array
.
(2) Determine if the array is empty
.
(3) An array of new elements
。
(4) Array merging
。
(5) Inserting elements into any position
。
(6) Delete an element at any location
(7) Delete the last element of an array
(8) Insert delete operation array cannot be crossed
The following actions are illegal:
。
(9) Modify a value in the array
。
(10) Bulk substitution of array elements
The number of replacements that can be replaced can be mismatched:
。
However, the following actions are illegal: bulk substitution must also be used to assign values to arrays:
(11) Array traversal
For In loop traversal:
。
Copyright NOTICE: This article for Bo Master original article, without Bo Master permission not reproduced.
Swift Learning Notes (20)--basic operation of arrays