rust标准库里没有atoi。要将字符串转为整数,可以用parse:
atoi
parse
fn main() { let s = "23333"; let x: usize = s.parse().unwrap(); println!("{}", x); }
23333