“Operator-equals” 现在实现了
各种各样的 “等价操作符” 已经被各种各样的trait实现了, 比如 +=
和 -=
。
举个例子:下面是一个 +=
操作符:
use std::ops::AddAssign;
#[derive(Debug)]
struct Count {
value: i32,
}
impl AddAssign for Count {
fn add_assign(&mut self, other: Count) {
self.value += other.value;
}
}
fn main() {
let mut c1 = Count { value: 1 };
let c2 = Count { value: 5 };
c1 += c2;
println!("{:?}", c1);
}
这将打印 Count { value: 6 }
.
当前内容版权归 rust-lang-cn 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 rust-lang-cn .