有没有一种方法可以检查用户是否使用text_io的read!()宏输入了整数?

时间:2019-08-14 20:42:33

标签: rust

我想检查用户是否输入了整数。如果没有,我想将它们重定向回输入问题:

println!("Place Your Chip");
let mut y_col: usize;

loop {
    y_col = read!();
    // Check if user entered in a integer or not
    if y_col < 1 || y_col > 6 {
        println!("Column space is 1 to 6");
        continue;
    } else {
        y_col -= 1;
    }
    if game.check_column(y_col) {
        println!("\t\t\t\t\t\t\t\tThe column you choose is full");
        continue;
    }
    break;
}

1 个答案:

答案 0 :(得分:0)

read!的重点是通过杀死线程来处理错误,以便调用者不必担心它们。这就是try_read!存在的原因:

#[macro_use]
extern crate text_io; // 0.1.7

fn main() {
    let mut y_col: Result<usize, _>;

    y_col = try_read!();
    match y_col {
        Ok(v) => println!("Got a number: {}", v),
        Err(e) => eprintln!("Was not a number ({})", e),
    }
}
$ cargo run
123
Got a number: 123

$ cargo run
moo
Was not a number (could not parse moo as target type of __try_read_var__)