/*數(shù)組(Arrays*)*/
//創(chuàng)建數(shù)組
var someInts = [Int]()
print("someInts is of type [Int] with \(someInts.count) items.") // 打印 "someInts is of type [Int] with 0 items."
var threeDoubles = Array(repeating: 0.0, count: 3)
//通過兩個數(shù)組相加創(chuàng)建一個數(shù)組
var anotherThreeDoubles = Array(repeating: 2.5, count: 3)
var sixDoubles = threeDoubles + anotherThreeDoubles
print(sixDoubles)
//訪問和修改數(shù)組
var shoppingList = ["Eggs", "Milk"]
print("The shopping list contains \(shoppingList.count) items.")
if shoppingList.isEmpty {
print("The shopping list is empty.")
} else {
print("The shopping list is not empty.")
}
//使用append(_:)方法在數(shù)組后面添加新的數(shù)據(jù)項
shoppingList.append("Flour")
//使用(+=)在數(shù)組后面添加數(shù)據(jù)項(相同類型)
shoppingList += ["Baking Powder"]
//使用下標獲取數(shù)組的數(shù)據(jù)項
var firstItem = shoppingList[0]
//通過下標來改變數(shù)據(jù)項值
shoppingList[0] = "Six eggs"
print(shoppingList)
shoppingList[1...2] = ["Bananas", "Apples"]
//調(diào)用數(shù)組的 insert(_:at:) 方法來在某個具體索引值之前添加數(shù)據(jù)項:
shoppingList.insert("Maple Syrup", at: 0)
//remove(at:)刪除某個元素
shoppingList.remove(at: 0)
//刪除最后一項
shoppingList.removeLast()
//刪除所有
// shoppingList.removeAll()
//遍歷數(shù)組
for item in shoppingList {
print(item)
}
//如果我們同時需要每個數(shù)據(jù)項的值和索引值,可以使用 enumerated() 方法來進行數(shù)組遍歷朋沮。 enumerated() 返回 一個由每一個數(shù)據(jù)項索引值和數(shù)據(jù)值組成的元組暴心。我們可以把這個元組分解成臨時常量或者變量來進行遍歷:
for (index,value) in shoppingList.enumerated() {
print("Item \(String(index + 1)):\(value)")
}
/************************集合*********************************/
// 集合(Set)用來存儲相同類型并且沒有確定順序的值。當(dāng)集合元素順序不重要時或者希望確保每個元素只出現(xiàn)一次 時可以使用 合而不是數(shù)組镀脂。
//集合類型的哈希值
//一個類型為了存儲在集合中,該類型必須是可哈希化的--也就是說,該類型必須提供一個方法來計算它的哈希值祟印。一個哈希值是 Int 類型的,相等的對象哈希值必須相同,比如 a==b ,因此必須 a.hashValue == b.hashValue门烂。
//創(chuàng)建和構(gòu)造一個空的集合
var letters = Set<Character>()
print("letters is of type Set<Character> with \(letters.count) items.")
letters.insert("a")
//用數(shù)組字面量創(chuàng)建集合
var favoriteGenres: Set<String> = ["Rock", "Classical", "Hip hop"]
print(favoriteGenres)
//訪問和修改一個集合
//你可以通過 Set 的屬性和方法來訪問和修改一個 Set 。
print("I have \(favoriteGenres.count) favorite music genres.")
//使用布爾屬性 isEmpty 作為一個縮寫形式去檢查 count 屬性是否為 0
if favoriteGenres.isEmpty {
print("As far as music goes, I'm not picky.")
} else {
print("I have particular music preferences.")
}
//調(diào)用 Set 的 insert(_:) 方法來添加一個新元素:
favoriteGenres.insert("Jazz")
//調(diào)用 Set 的 remove(_:) 方法去刪除一個元素,如果該值是該 Set 的一個元素則刪除該元素并且返回 被刪除的元素值,否則如果該 Set 不包含該值,則返回 nil 送挑。另外, Set 中的所有元素可以通過它的 removeAll() 方法刪除。
if let removedGenre = favoriteGenres.remove("Rock") {
print("\(removedGenre)? I'm over it.")
} else {
print("I never much cared for that.")
}
//使用 contains(_:) 方法去檢查 Set 中是否包含一個特定的值:
if favoriteGenres.contains("Funk") {
print("I get up on the good foot.")
} else {
print("It's too funky in here.")
}
//遍歷集合
for genre in favoriteGenres {
print("\(genre)")
}
//Swift 的 Set 類型沒有確定的順序,為了按照特定順序來遍歷一個 Set 中的值可以使用 sorted() 方法,它將返回一個有序數(shù)組,這個數(shù)組的元素排列順序由操作符'<'對元素進行比較的結(jié)果來確定.
for genre in favoriteGenres.sorted() {
print("\(genre)")
}
//集合操作
//使用 intersection(_:) 方法根據(jù)兩個集合中都包含的值創(chuàng)建的一個新的集合暖眼。
//使用 symmetricDifference(_:) 方法根據(jù)在一個集合中但不在兩個集合中的值創(chuàng)建一個新的集合惕耕。
//使用 union(_:) 方法根據(jù)兩個集合的值創(chuàng)建一個新的集合。
//使用 subtracting(_:) 方法根據(jù)不在該集合中的值創(chuàng)建一個新的集合诫肠。
let oldDigts:Set = [1,3,5,7,9]
let evenDigts:Set = [0,2,4,6,8]
let singleDigitPrimeNumbers: Set = [2, 3, 5, 7]
oldDigts.union(evenDigts).sorted()
oldDigts.subtracting(singleDigitPrimeNumbers).sorted()
oldDigts.symmetricDifference(singleDigitPrimeNumbers).sorted()
print(oldDigts.union(evenDigts).sorted())
print(oldDigts.subtracting(singleDigitPrimeNumbers).sorted())
print(oldDigts.symmetricDifference(singleDigitPrimeNumbers).sorted())
//集合成員關(guān)系和相等
//使用“是否相等”運算符( == )來判斷兩個集合是否包含全部相同的值司澎。
//使用 isSubset(of:) 方法來判斷一個集合中的值是否也被包含在另外一個集合中。
//使用 isSuperset(of:) 方法來判斷一個集合中包含另一個 合中所有的值栋豫。
//使用 isStrictSubset(of:) 或者 isStrictSuperset(of:) 方法來判斷一個集合是否是另外一個集合的子集合或者父 合并且兩個集合并不相等挤安。
//使用 isDisjoint(with:) 方法來判斷兩個集合是否不含有相同的值(是否沒有交 )。
let houseAnimals: Set = ["?", "?"]
let farmAnimals: Set = ["?", "?", "?", "?", "?"]
let cityAnimals: Set = ["?", "?"]
houseAnimals.isSubset(of: farmAnimals)
// true
farmAnimals.isSuperset(of: houseAnimals)
// true
farmAnimals.isDisjoint(with: cityAnimals)
// true
//字典
//字典類型簡化語法:Swift 的字典使用 Dictionary<Key, Value> 定義,其中 Key 是字典中鍵的數(shù)據(jù)類型, Value 是字典中對應(yīng)于這些 鍵所存儲值的數(shù)據(jù)類型丧鸯。
//創(chuàng)建字典
var namesOfIntegers = [NSInteger: String]()
// namesOfIntegers 是一個空的 [Int: String] 字典
namesOfIntegers[16] = "sixteen"
// namesOfIntegers 現(xiàn)在包含一個鍵值對
namesOfIntegers = [:]
// namesOfIntegers 又成為了一個 [Int: String] 類型的空字典
//用字典字面量創(chuàng)建字典
var airports: [String: String] = ["YYZ": "Toronto Pearson", "DUB": "Dublin"]
//訪問和修改字典
//通過字典的只讀屬性 count 來獲取某個字典的數(shù)據(jù)項數(shù)量:
print("The dictionary of airports contains \(airports.count) items.")
// 打印 "The dictionary of airports contains 2 items."(這個字典有兩個數(shù)據(jù)項)
//字典的 updateValue(_:forKey:) 方法可以設(shè)置或者更新特定鍵對應(yīng)的值漱受。返回跟新之前的值
if let oldValue = airports.updateValue("Dublin Airport", forKey: "DUB") {
print("The old value for DUB was \(oldValue).")
}
print(airports)
//字典遍歷
for (airportCode, airportName) in airports {
print("\(airportCode): \(airportName)")
}
//通過訪問keys或者values屬性,我們也可以遍歷字典的鍵或者值:
for airportCode in airports.keys {
print("Airport code: \(airportCode)")
}
for airportName in airports.values {
print("Airport name: \(airportName)")
}
swift七-集合類型
最后編輯于 :
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
- 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來篮愉,“玉大人腐芍,你說我怎么就攤上這事∈怎铮” “怎么了猪勇?”我有些...
- 文/不壞的土叔 我叫張陵,是天一觀的道長颠蕴。 經(jīng)常有香客問我泣刹,道長,這世上最難降的妖魔是什么犀被? 我笑而不...
- 正文 為了忘掉前任椅您,我火速辦了婚禮,結(jié)果婚禮上寡键,老公的妹妹穿的比我還像新娘掀泳。我一直安慰自己,他們只是感情好西轩,可當(dāng)我...
- 文/花漫 我一把揭開白布员舵。 她就那樣靜靜地躺著,像睡著了一般遭商。 火紅的嫁衣襯著肌膚如雪固灵。 梳的紋絲不亂的頭發(fā)上,一...
- 文/蒼蘭香墨 我猛地睜開眼诗力,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了我抠?” 一聲冷哼從身側(cè)響起苇本,我...
- 正文 年R本政府宣布,位于F島的核電站氯迂,受9級特大地震影響践叠,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜嚼蚀,卻給世界環(huán)境...
- 文/蒙蒙 一禁灼、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧轿曙,春花似錦弄捕、人聲如沸。這莊子的主人今日做“春日...
- 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至您单,卻和暖如春斋荞,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背虐秦。 一陣腳步聲響...
推薦閱讀更多精彩內(nèi)容
- 基礎(chǔ)類型 Swift通過var進行變量定義,通過let進行常量定義 Swift添加了類型推斷暮现,對于賦值的常量或者變...
- 創(chuàng)建空集合 創(chuàng)建有元素的集合 單個集合的基本操作 遍歷集合 console log 如下: 多個集合的操作 con...
- 月底了还绘,又是揪心的一天,廠家不停的來電話栖袋,郵件蚕甥,信息等,這個月業(yè)績還沒完成栋荸。 這難道就是我生命需要面臨的功課,如何...