Swift4 基礎(chǔ)部分:Basic Operators

本文是學(xué)習(xí)《The Swift Programming Language》整理的相關(guān)隨筆,基本的語法不作介紹,主要介紹Swift中的一些特性或者與OC差異點(diǎn)。

系列文章:

Basic Operators

等號操作符(Assignment Operator)

Unlike the assignment operator in C and 
Objective-C, the assignment operator in 
Swift does not itself return a value. 
  • Swift 中的等號操作符,是不會有返回值的;為了避免以下例子中的錯(cuò)誤用法(安全性的體現(xiàn)點(diǎn))。

例子:

var color1 = "red"
var color2 = "green";
if color2 = color1 {
    
}

編譯報(bào)錯(cuò):

error: MyPlayground.playground:50:11: 
error: use of '=' in a boolean context, did 
you mean '=='?
if color2 = color1 {
   ~~~~~~ ^ ~~~~~~
          ==

比較操作符(Comparison Operators)

Swift also provides two identity operators 
(=== and !==), which you use to test 
whether two object references both refer to 
the same object instance. For more 
information, see Classes and Structures.
  • Swift中引入的===,!==只能用來比較引用數(shù)據(jù)類型

例子1:

var color1 = NSString(string: "red");
var color2 = color1;
if color2 === color1{
    print("Equal");
}

執(zhí)行結(jié)果:

Equal

例子2:

var color1 = "red";
var color2 = color1;
if color2 === color1{
    print("Equal");
}

執(zhí)行結(jié)果:

error: MyPlayground.playground:50:11: error: binary 
operator '===' cannot be applied to two 'String' operands
if color2 === color1{
   ~~~~~~ ^   ~~~~~~

同時(shí)得出另一個(gè)結(jié)論:NSString是引用類型,String是值類型。

等號合并操作符(Nil-Coalescing Operator)

The nil-coalescing operator is shorthand for the code 
below: a != nil ? a! : b

例子:

let num1 = 1;
var num2:Int?;
var num3 = num2 ?? num1;
print("num3:\(num3)")
num2 = 2;
num3 = num2 ?? num1;
print("num3:\(num3)")

執(zhí)行結(jié)果:

num3:1
num3:2

區(qū)間操作符(Range Operators)

1.The closed range operator (a...b) defines a range that 
runs from a to b, and includes the values a and b. The 
value of a must not be greater than b. 

2.The half-open range operator (a..<b) defines a range
that runs from a to b, but does not include b.

直接查看下面例子即可了解使用:

for index in 1...5 {
    print("\(index) times 5 is \(index * 5)")
}

for index in 1..<5 {
    print("\(index) times 5 is \(index * 5)")
}

執(zhí)行結(jié)果:

1 times 5 is 5
2 times 5 is 10
3 times 5 is 15
4 times 5 is 20
5 times 5 is 25
1 times 5 is 5
2 times 5 is 10
3 times 5 is 15
4 times 5 is 20
3.The closed range operator has an alternate form for ranges that continue as far as possible in one direction—for 
example, a range that includes all the elements of an 
array, from index 2 to the end of the array. In these 
cases, you can omit the value from one side of the range 
operator. This kind of range is called a one-sided range 
because the operator has a value on only one side.

例子:

let nums = [1, 2, 3, 4]
for num in nums[2...]{
    print("num:\(num)");
}

for num in nums[...2]{
    print("num:\(num)");
}

執(zhí)行結(jié)果:

num:3
num:4
num:1
num:2
num:3
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
平臺聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡書系信息發(fā)布平臺,僅提供信息存儲服務(wù)。

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

  • ● 考研單詞125個(gè) ? ● 考研課程 ? ● 日語復(fù)習(xí)5,6,7 ? 我要吃橘子。 過...
    MickeyMinnie閱讀 127評論 0 0
  • 有一日, 有人不再做夢。 自那以后, 我也不再漫步, 不再患有疾病, 不再眩暈, 同時(shí)失去了顏色,聲音,和氣味。 ...
    易安閱讀 89評論 0 1
  • ?在學(xué)會說yes之前,請先學(xué)會說no。 1. 好友麻醬的公司與我在同一座大廈,平時(shí)我們都是一起約著出去吃中飯。 今...
    蘇小鹿lu閱讀 1,103評論 18 38
  • 1. 不變模式的核心思想 在并行開發(fā)過程中,為確保數(shù)據(jù)的一致性和正確性,又必要對對象進(jìn)行同步,但是同步操作對系統(tǒng)性...
    Chinesszz閱讀 194評論 0 0