Trait std::ops::Add1.0.0[][src]

pub trait Add<Rhs = Self> {
    type Output;
    #[must_use]
    fn add(self, rhs: Rhs) -> Self::Output;
}
Expand description

加法运算符 +

请注意,默认情况下 RhsSelf,但这不是强制性的。 例如,std::time::SystemTime 实现 Add<Duration>,它允许以 SystemTime = SystemTime + Duration 形式进行操作。

Examples

可加分

use std::ops::Add;

#[derive(Debug, Copy, Clone, PartialEq)]
struct Point {
    x: i32,
    y: i32,
}

impl Add for Point {
    type Output = Self;

    fn add(self, other: Self) -> Self {
        Self {
            x: self.x + other.x,
            y: self.y + other.y,
        }
    }
}

assert_eq!(Point { x: 1, y: 0 } + Point { x: 2, y: 3 },
           Point { x: 3, y: 3 });
Run

使用泛型实现 Add

这是使用泛型实现 Add trait 的同一 Point 结构体的示例。

use std::ops::Add;

#[derive(Debug, Copy, Clone, PartialEq)]
struct Point<T> {
    x: T,
    y: T,
}

// 请注意,该实现使用关联类型 `Output`。
impl<T: Add<Output = T>> Add for Point<T> {
    type Output = Self;

    fn add(self, other: Self) -> Self::Output {
        Self {
            x: self.x + other.x,
            y: self.y + other.y,
        }
    }
}

assert_eq!(Point { x: 1, y: 0 } + Point { x: 2, y: 3 },
           Point { x: 3, y: 3 });
Run

Associated Types

应用 + 运算符后的结果类型。

Required methods

执行 + 操作。

Example

assert_eq!(12 + 1, 13);
Run

Implementors

Panics

如果结果时间点不能由基础数据结构体表示,则此函数可能为 panic。 没有 panic 的版本,请参见 Instant::checked_add

Panics

如果结果时间点不能由基础数据结构体表示,则此函数可能为 panic。 没有 panic 的版本,请参见 SystemTime::checked_add

实现 + 运算符以连接两个字符串。

这会消耗左侧的 String,并重新使用其缓冲区 (如有必要,请增加缓冲区)。 这样做是为了避免分配新的 String 并在每个操作上复制整个内容,当通过重复连接构建 n 字节的字符串时,这将导致 O(n^ 2) 运行时间。

右侧的字符串仅是借用的。它的内容被复制到返回的 String 中。

Examples

将两个 String 连接起来,第一个按值取值,第二个借用:

let a = String::from("hello");
let b = String::from(" world");
let c = a + &b;
// `a` 已移动,无法在此处使用。
Run

如果要继续使用第一个 String,则可以对其进行克隆并追加到克隆中:

let a = String::from("hello");
let b = String::from(" world");
let c = a.clone() + &b;
// `a` 在这里仍然有效。
Run

可以通过将第一个切片转换为 String 来完成 &str 切片的连接:

let a = "hello";
let b = " world";
let c = a.to_string() + b;
Run