Rust中Option、Result的map和and_then的区别

rust 复制代码
Maps a Result<T, E> to Result<U, E> by applying a function to a contained Ok value, leaving an Err value untouched.
This function can be used to compose the results of two functions.
#[inline]
#[stable(feature = "rust1", since = "1.0.0")]
pub fn map<U, F: FnOnce(T) -> U>(self, op: F) -> Result<U, E> {
    match self {
        Ok(t) => Ok(op(t)),
        Err(e) => Err(e),
    }
}
Calls op if the result is Ok, otherwise returns the Err value of self.
This function can be used for control flow based on Result values.
#[inline]
#[stable(feature = "rust1", since = "1.0.0")]
pub fn and_then<U, F: FnOnce(T) -> Result<U, E>>(self, op: F) -> Result<U, E> {
    match self {
        Ok(t) => op(t),
        Err(e) => Err(e),
    }
}

看签名这两个函数返回值都是Result,不同之处在于闭包的返回值,and_then要求我们手动包起来。

map和and_then最大区别就是map在链式调用时可能会出现嵌套的Option或者Result.

如果闭包函数返回值也是一个Option\Result的话,那么整体结果就会出现嵌套,此时使用and_then就可以避免.

相关推荐
半夏知半秋3 小时前
rust学习-rust中的格式化打印
服务器·开发语言·后端·学习·rust
wang_yb3 小时前
Rust多线程中安全的使用变量
rust·databook
m0_748254885 小时前
项目升级Sass版本或升级Element Plus版本遇到的问题
前端·rust·sass
半夏知半秋1 天前
rust学习-rust中的保留字
服务器·开发语言·后端·学习·rust
SomeB1oody1 天前
【Rust自学】15.0. 智能指针(序):什么是智能指针及Rust智能指针的特性
开发语言·后端·rust
Hello.Reader1 天前
Rust 中的结构体使用指南
前端·算法·rust
SomeB1oody1 天前
【Rust自学】14.5. cargo工作空间(Workspace)
开发语言·后端·rust
^_^ 纵歌1 天前
rust并发和golang并发比较
开发语言·golang·rust
Hello.Reader1 天前
Rust 中的方法与关联函数详解
服务器·开发语言·rust
SomeB1oody1 天前
【Rust自学】14.4. 发布crate到crates.io
开发语言·后端·rust