Swift4 基础部分: Error Handling(错误处理)

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

系列文章:

Error handling is the process of responding to and 
recovering from error conditions in your program. Swift 
provides first-class support for throwing, catching, 
propagating, and manipulating recoverable errors at 
runtime.
  • 错误处理是响应错误以及从错误中恢复的过程。Swift 提供了在运行时对可恢复错误的抛出、捕获、传递和操作的最好的支持。

表示与抛出错误(Representing and Throwing Errors)

例子:

enum VendingMachineError:Error {
    case invalidSelection;
    case insufficientFunds(coinsNeeded: Int);
    case outOfStock;
}

抛出错误:

throw VendingMachineError.insufficientFunds(coinsNeeded: 5)

处理错误(Handling Errors)

There are four ways to handle errors in Swift. You can 
propagate the error from a function to the code that calls 
that function, handle the error using a do-catch 
statement, handle the error as an optional value, or 
assert that the error will not occur.
  • Swift 中有4种处理错误的方式。你可以把函数抛出的错误传递给调用此函数的代码、用do-catch语句处理错误、将错误作为可选类型处理、或者断言此错误根本不会发生。

用Throw传递错误(Propagating Errors Using Throwing Functions)

例子

enum VendingMachineError:Error {
    case invalidSelection;
    case insufficientFunds(coinsNeeded: Int);
    case outOfStock;
}

struct Item {
    var price: Int;
    var count: Int;
}

class VendingMachine {
    var inventory = [
        "Candy Bar": Item(price: 12, count: 17),
        "Chips": Item(price: 10, count: 4),
        "Pretzels": Item(price: 7, count: 11)
    ];
    
    var coinsDeposited = 0;
    
    func vend(itemNamed name:String) throws{
        guard let item = inventory[name] else {
            throw VendingMachineError.invalidSelection;
        }
        
        guard item.count > 0 else {
            throw VendingMachineError.outOfStock;
        }
        
        guard item.price <= coinsDeposited else {
            throw VendingMachineError.insufficientFunds(coinsNeeded: item.price - coinsDeposited);
        }
        
        coinsDeposited -= item.price;
        
        var newItem = item;
        newItem.count -= 1;
        inventory[name] = newItem;
        print("Dispensing \(name)");
    }
}

let favoriteSnacks = [
    "Alice": "Chips",
    "Bob": "Licorice",
    "Eve": "Pretzels",
]

func buyFavoriteSnack(person: String, vendingMachine: VendingMachine) throws {
    let snackName = favoriteSnacks[person] ?? "Candy Bar";
    try vendingMachine.vend(itemNamed: snackName);
}
  • buyFavoriteSnack函数中将异常抛出。

用Do-Catch处理错误(Handling Errors Using Do-Catch)

接着上述的例子:

var vendingMachine = VendingMachine();
vendingMachine.coinsDeposited = 8;

do {
    try buyFavoriteSnack(person: "Alice", vendingMachine: vendingMachine);
} catch VendingMachineError.invalidSelection {
    print("Invalid Selection.");
} catch VendingMachineError.outOfStock {
    print("Out of Stock.");
} catch VendingMachineError.insufficientFunds(let coinsNeeded) {
    print("Insufficient funds. Please insert an additional \(coinsNeeded) coins.");
}

执行结果:

Insufficient funds. Please insert an additional 2 coins.

将错误转换成可选值(Converting Errors to Optional Values)

You use try? to handle an error by converting it to an optional value. 
If an error is thrown while evaluating the try? expression, the value 
of the expression is nil.
  • 可以使用try?将错误转成可选值,如果错误被抛出,那么try?执行的表达式结果就是nil

例子

enum CustomError:Error {
    case invalidSelection;
}

func someThrowingFunction(_ num:Int) throws -> Int {
    if num < 0{
        throw CustomError.invalidSelection;
    }
    
    return num;
}

let x = try? someThrowingFunction(-1);
let y: Int?;
let z = try? someThrowingFunction(1);
do {
    y = try someThrowingFunction(-1);
} catch {
    y = nil;
}
print(x);
print(y);
print(z);

执行结果:

nil
nil
Optional(1)

禁止错误传递(Disabling Error Propagation)

Sometimes you know a throwing function or method won’t, in fact, throw an 
error at runtime. On those occasions, you can write try! before the 
expression to disable error propagation and wrap the call in a runtime 
assertion that no error will be thrown. 
  • 如果你确定某个函数不会抛出错误,则使用try!禁止错误传递。

指定清理操作(Specifying Cleanup Actions)

You use a defer statement to execute a set of statements just before code 
execution leaves the current block of code.
  • 可以使用defer语句在执行完代码块中的一系列语句时做一些清理的工作。

例子

func calculateSum(_ nums:inout [Int]) -> Int{
    defer {
        print("defer removeAll");
        nums.removeAll();
    }
    var result:Int = 0;
    for var index in 0...nums.count - 1{
        result += nums[index];
    }
    
    return result;
}

var nums:[Int] = [1,2,3,4,5,6];
print(calculateSum(&nums));
print(nums);

执行结果

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

推荐阅读更多精彩内容

  • 本章将会介绍 自动引用计数的工作机制自动引用计数实践类实例之间的循环强引用解决实例之间的循环强引用闭包引起的循环强...
    寒桥阅读 893评论 0 0
  • 关于 Swift 重要这个文档所包含的准备信息, 是关于开发的 API 和技术的。这个信息可能会改变, 根据这个文...
    无沣阅读 4,275评论 1 27
  • 他,5岁时,对于妈妈的回忆就只有一个背影,妈妈从小平屋走出来,大眼童真的他叫了声:妈妈!一个泪眼婆娑的脸低下来看着...
    云中自宥玉阅读 444评论 0 2
  • 导读;咱们在销售的职场上,会遇到很多的难题,但是我们在遇到事情的时候不要着急,我们可以以其他方世界转移实践。比如在...
    时代小强阅读 801评论 0 0
  • 今天,我和妈妈来到了紫嘉裕来观赏深秋美景。 刚到景区,我就看到了糖葫芦,心中一喜,过了几秒钟,我就...
    于士淋阅读 341评论 0 2