use std::ops::Add; impl Add<i32> for i32 { type Output = i32; fn add(self, other: i32) -> Self::Output { self - other } } fn main() {}.
確定! 回上一頁