Swift 4.0 數(shù)組经备、集合Set阻问、字典相關(guān)常用用法總結(jié)

數(shù)組用法

//初始化數(shù)組
let emptyArray = [String]()
//Array初始化4個一樣的字符串,repeating 是Array.Element 類型
let f4Doubles = Array(repeating: "hello", count: 4)
//輸出[1, 2, 3, 4, 5, 6, 7] 使用范圍初始化
let numbers = Array(1...7)
//一般使用到的初始化
let array1:[String] = ["3","6","9","4"]
let array2:[Any] = ["2",3,"e",4]
var appendArray = array1 + array2//出錯
//只有類型一樣才可以+
let numbers1 = Array(1...3)
let numbers2 = Array(5...8)
let ss = numbers1 + numbers2 
//一般用法
var testArray = [2,5,3,1,9,6,4,8,7]   
//給數(shù)組倒序 注意此時下標(biāo)的值沒有變化
testArray.reverse()
for i in testArray {
    print("每個元素值為:\(i)")
}
for (index,value) in testArray.enumerated() {
    print("下標(biāo) = \(index), 值 = \(value)")
}    
testArray.append(10)//追加元素
print("testArray = \(testArray)")
if testArray.isEmpty {
    print("判斷是否為空")
}
let count = testArray.count
print("數(shù)組元素個數(shù) = \(count)")
testArray += [21] //使用+=必須里面的類型一致
print(testArray)
//修改元素
var newArray = ["hello","you","jk","test"]
newArray[0] = "修改了第0個元素"
//根據(jù)下標(biāo)范圍修改
newArray[2...4] = ["范圍2","范圍4"]
newArray[2..<4] = ["范圍2","范圍4"]
//在對應(yīng)的位置插入元素
newArray.insert("我是插入的元素", at: 2)
//在某個位置插入新的數(shù)組
newArray.insert(contentsOf: ["111","222"], at: 3)
let cast = ["Vivien", "Marlon", "Kim", "Karl"]
let list = cast.joined(separator: ", ")//list這時候返回的是一個字符串
// Prints "Vivien, Marlon, Kim, Karl"
let nestedNumbers = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]
let joined = nestedNumbers.joined(separator: [-1, -2]) 
//這時候joined是JoinedSequence序列類型
print(Array(joined))
//[1, 2, 3, -1, -2, 4, 5, 6, -1, -2, 7, 8, 9]
//也可以通過范圍來joined
let ranges = [0..<3, 8..<10, 15..<17]
for index in ranges.joined() {
    print(index, terminator: " ")
}
// Prints: "0 1 2 8 9 15 16"
let removeItem = newArray.remove(at: 2)
print("被刪除的元素為:\(removeItem)")
//刪除第一個元素
let removeFirst = newArray.removeFirst()
//刪除第二個元素
let removeLast = newArray.removeLast()
//刪除前3個元素
newArray.removeFirst(3)
//刪除后3個元素
newArray.removeLast(3)
//刪除1...4的元素
newArray.removeSubrange(1...4)
//刪除全部 keepingCapacity是否保存內(nèi)存空間
_ = newArray.removeAll(keepingCapacity: true)
print(newArray.capacity)

集合Set用法

Set中的類型必須是Hashable的
let letters = Set<String>()
let count = letters.count
print(count)
//Set 無序且相同元素只出現(xiàn)一次
let set:Set<String> = ["你好","hello","你好","name","hhh","cad","name"]
print("\(set)")
//重復(fù)的不會輸出["name", "hhh", "你好", "hello", "cad"]
set.insert("我是插入的")
if set.isEmpty {
    print("集合為空")
}
//因為一個集合不是一個有序集合沦疾,所以“first”元素可能不是第一個添加到集合中的元素称近。 該集合不能為空。
let removeFirst = set.removeFirst()
//同理數(shù)組的其他幾個也一樣哮塞,在集合里面
// Set 的remove 返回的是一個可選值
if let removed = ingredients.remove("hhh") { 
    print("The hhh is now delete") 
}
if set.contains("你好") {
    print("參數(shù)是否在集合中")
}
//遍歷
for gen in set {
    print(gen)
}
//"Swift’s Set type does not have a defined ordering. To iterate over the values of a set in a specific order, use the sorted() method, which returns the set’s elements as an array sorted using the < operator"
//"Swift的Set類型沒有定義的順序刨秆。 要按特定順序迭代集合的值,請使用sorted()方法忆畅,該方法將集合的元素作為使用<運算符排序的數(shù)組衡未。"
for gen in set.sorted() {
    print(gen)
}
//集合本身的forEach
set.forEach { (value) in
    print(value)
}
//創(chuàng)建一個只有兩個集合通用(交集)的值的新集合
intersection(_:) 
//在集合中創(chuàng)建一個新集合,但不能同時創(chuàng)建集合
symmetricDifference(_:)
//用兩個集合中的所有值創(chuàng)建一個新集合
union(_:)
//創(chuàng)建一個新的集合家凯,其值不在指定的集合中
subtracting(_:)
//
let set2:Set<String> = ["你好","name","hhh"]
let set3:Set = ["qp","ss","lo"]
let isTrue = set2.isSubset(of: setEqual)
if isTrue {
    print("一個集合的所有值包含在指定的集合中")
}
    
let isTrue2 = setEqual.isSuperset(of: set2)
if isTrue2 {
    print("一個集合包含指定集合中的所有值")
}
    
//isStrictSubset(of :)或isStrictSuperset(of :)方法來確定一個集合是一個子集還是超集缓醋,但不等于一個指定的集合
let isTure3 = set2.isStrictSubset(of: setEqual)
if isTure3 {
    print("set2 是 setEqual的子集")
}
let isTure4 = setEqual.isStrictSuperset(of: set2)
if isTure4 {
    print("setEqual 是 set2的超集")
}
    
let isTure5 = set3.isDisjoint(with: set)
if isTure5 {
    print("確定兩個集合沒有共同的值")
}

字典用法

var testDic = [Int: String]()
testDic[12] = "hello"
testDic[9] = "world"
testDic = [:]
if testDic.isEmpty {
    print("字典為空")
}
print(testDic)
    
var testDic2:[String: String] = ["token":"221212","type":"21"]
print(testDic2)
let count = testDic2.count
print("字典的數(shù)量\(count)")
//賦值
testDic2["method"] = "test"
//修改
testDic2["type"] = "100"
print(testDic2)
//updateValue 方法
if let oldValue = testDic2.updateValue("newValue", forKey: "token") {
    print("獲取到的舊值:\(oldValue)")
}
print(testDic2)
//刪除值
testDic2["type"] = nil
print(testDic2)
if let removeValue = testDic2.removeValue(forKey: "token") {
    print("被移除的值\(removeValue)")
}
print(testDic2)
//刪除所有
testDic2.removeAll()
    
let testDic3:[String: String] = ["token":"221212","type1":"hsaj","type2":"hej","type3":"21","type4":"109"]

for (keyv,valuek) in testDic3 {
    print("key = \(keyv) value = \(valuek)")
}
//返回所有的key
let keys = testDic3.keys
for key in keys {
    print(key)
}
//返回所有的values
let values = testDic3.values
for value in values {
    print(value)
}
//通過keys構(gòu)造數(shù)組
let keysArray = Array(keys)
print(keysArray)
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市绊诲,隨后出現(xiàn)的幾起案子送粱,更是在濱河造成了極大的恐慌,老刑警劉巖掂之,帶你破解...
    沈念sama閱讀 207,248評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件抗俄,死亡現(xiàn)場離奇詭異,居然都是意外死亡世舰,警方通過查閱死者的電腦和手機动雹,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,681評論 2 381
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來跟压,“玉大人胰蝠,你說我怎么就攤上這事。” “怎么了姊氓?”我有些...
    開封第一講書人閱讀 153,443評論 0 344
  • 文/不壞的土叔 我叫張陵丐怯,是天一觀的道長。 經(jīng)常有香客問我翔横,道長读跷,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,475評論 1 279
  • 正文 為了忘掉前任禾唁,我火速辦了婚禮效览,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘荡短。我一直安慰自己丐枉,他們只是感情好,可當(dāng)我...
    茶點故事閱讀 64,458評論 5 374
  • 文/花漫 我一把揭開白布掘托。 她就那樣靜靜地躺著瘦锹,像睡著了一般。 火紅的嫁衣襯著肌膚如雪闪盔。 梳的紋絲不亂的頭發(fā)上弯院,一...
    開封第一講書人閱讀 49,185評論 1 284
  • 那天,我揣著相機與錄音泪掀,去河邊找鬼听绳。 笑死,一個胖子當(dāng)著我的面吹牛异赫,可吹牛的內(nèi)容都是我干的椅挣。 我是一名探鬼主播,決...
    沈念sama閱讀 38,451評論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼塔拳,長吁一口氣:“原來是場噩夢啊……” “哼鼠证!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起蝙斜,我...
    開封第一講書人閱讀 37,112評論 0 261
  • 序言:老撾萬榮一對情侶失蹤名惩,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后孕荠,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體娩鹉,經(jīng)...
    沈念sama閱讀 43,609評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,083評論 2 325
  • 正文 我和宋清朗相戀三年稚伍,在試婚紗的時候發(fā)現(xiàn)自己被綠了弯予。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,163評論 1 334
  • 序言:一個原本活蹦亂跳的男人離奇死亡个曙,死狀恐怖锈嫩,靈堂內(nèi)的尸體忽然破棺而出受楼,到底是詐尸還是另有隱情,我是刑警寧澤呼寸,帶...
    沈念sama閱讀 33,803評論 4 323
  • 正文 年R本政府宣布艳汽,位于F島的核電站,受9級特大地震影響对雪,放射性物質(zhì)發(fā)生泄漏河狐。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,357評論 3 307
  • 文/蒙蒙 一瑟捣、第九天 我趴在偏房一處隱蔽的房頂上張望馋艺。 院中可真熱鬧,春花似錦迈套、人聲如沸捐祠。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,357評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽踱蛀。三九已至鳖链,卻和暖如春莲组,著一層夾襖步出監(jiān)牢的瞬間附鸽,已是汗流浹背蔗喂。 一陣腳步聲響...
    開封第一講書人閱讀 31,590評論 1 261
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留蒸播,地道東北人。 一個月前我還...
    沈念sama閱讀 45,636評論 2 355
  • 正文 我出身青樓,卻偏偏與公主長得像圈浇,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子靴寂,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 42,925評論 2 344

推薦閱讀更多精彩內(nèi)容