Swift4 基础部分:Basic Operators

本文是学习《The Swift Programming Language》整理的相关随笔,基本的语法不作介绍,主要介绍Swift中的一些特性或者与OC差异点。

系列文章:

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 中的等号操作符,是不会有返回值的;为了避免以下例子中的错误用法(安全性的体现点)。

例子:

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

编译报错:

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中引入的===,!==只能用来比较引用数据类型

例子1:

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

执行结果:

Equal

例子2:

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

执行结果:

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

同时得出另一个结论: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)")

执行结果:

num3:1
num3:2

区间操作符(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)")
}

执行结果:

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)");
}

执行结果:

num:3
num:4
num:1
num:2
num:3
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 160,108评论 4 364
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 67,699评论 1 296
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 109,812评论 0 244
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 44,236评论 0 213
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 52,583评论 3 288
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 40,739评论 1 222
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 31,957评论 2 315
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 30,704评论 0 204
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 34,447评论 1 246
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 30,643评论 2 249
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 32,133评论 1 261
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 28,486评论 3 256
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 33,151评论 3 238
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 26,108评论 0 8
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 26,889评论 0 197
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 35,782评论 2 277
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 35,681评论 2 272

推荐阅读更多精彩内容

  • ● 考研单词125个 ✔ ● 考研课程 ✔ ● 日语复习5,6,7 ✔ 我要吃橘子。 过...
    MickeyMinnie阅读 109评论 0 0
  • 有一日, 有人不再做梦。 自那以后, 我也不再漫步, 不再患有疾病, 不再眩晕, 同时失去了颜色,声音,和气味。 ...
    易安阅读 78评论 0 1
  • ​在学会说yes之前,请先学会说no。 1. 好友麻酱的公司与我在同一座大厦,平时我们都是一起约着出去吃中饭。 今...
    苏小鹿lu阅读 1,062评论 18 38
  • 1. 不变模式的核心思想 在并行开发过程中,为确保数据的一致性和正确性,又必要对对象进行同步,但是同步操作对系统性...
    Chinesszz阅读 164评论 0 0