如何在Rust 1.0中读取用户的整数输入?

时间:2015-05-20 16:17:27

标签: input integer rust user-input

我发现的现有答案都基于from_str(例如Reading in user input from console once efficiently),但显然from_str(x)已在Rust 1.0中更改为x.parse()。作为一个新手,考虑到这一变化,原始解决方案应该如何适应并不明显。

从Rust 1.0开始,从用户那里获取整数输入的最简单方法是什么?

7 个答案:

答案 0 :(得分:27)

这是一个包含所有可选类型注释和错误处理的版本,对于像我这样的初学者可能很有用:

use std::io;

fn main() {
    let mut input_text = String::new();
    io::stdin()
        .read_line(&mut input_text)
        .expect("failed to read from stdin");

    let trimmed = input_text.trim();
    match trimmed.parse::<u32>() {
        Ok(i) => println!("your integer input: {}", i),
        Err(..) => println!("this was not an integer: {}", trimmed),
    };
}

答案 1 :(得分:8)

可能最简单的部分是使用text_io crate并写:

#[macro_use]
extern crate text_io;

fn main() {
    // read until a whitespace and try to convert what was read into an i32
    let i: i32 = read!();
    println!("Read in: {}", i);
}

如果您需要同时读取多个值,则可能需要每晚使用Rust。

答案 2 :(得分:5)

以下是一些可能性(Rust 1.7):

use std::io;

fn main() {
    let mut n = String::new();
    io::stdin()
        .read_line(&mut n)
        .expect("failed to read input.");
    let n: i32 = n.trim().parse().expect("invalid input");
    println!("{:?}", n);

    let mut n = String::new();
    io::stdin()
        .read_line(&mut n)
        .expect("failed to read input.");
    let n = n.trim().parse::<i32>().expect("invalid input");
    println!("{:?}", n);

    let mut n = String::new();
    io::stdin()
        .read_line(&mut n)
        .expect("failed to read input.");
    if let Ok(n) = n.trim().parse::<i32>() {
        println!("{:?}", n);
    }
}

这些为您提供模式匹配的仪式,而不依赖于额外的库。

答案 3 :(得分:4)

parse或多或少相同;这是read_line现在不愉快。

use std::io;

fn main() {
    let mut s = String::new();
    io::stdin().read_line(&mut s).unwrap();

    match s.trim_right().parse::<i32>() {
        Ok(i) => println!("{} + 5 = {}", i, i + 5),
        Err(_) => println!("Invalid number."),
    }
}

答案 4 :(得分:1)

如果需要简单的语法,可以创建扩展方法:

use std::error::Error;
use std::io;
use std::str::FromStr;

trait Input {
    fn my_read<T>(&mut self) -> io::Result<T>
    where
        T: FromStr,
        T::Err: Error + Send + Sync + 'static;
}

impl<R> Input for R where R: io::Read {
    fn my_read<T>(&mut self) -> io::Result<T>
    where
        T: FromStr,
        T::Err: Error + Send + Sync + 'static,
    {
        let mut buff = String::new();
        self.read_to_string(&mut buff)?;

        buff.trim()
            .parse()
            .map_err(|e| io::Error::new(io::ErrorKind::InvalidInput, e))
    }
}

// Usage:

fn main() -> io::Result<()> {
    let input: i32 = io::stdin().my_read()?;

    println!("{}", input);

    Ok(())
}

答案 5 :(得分:0)

如果您正在寻找一种方法来读取代码,以在无法访问text_io的网站(例如Codechef或Codeforce)中进行竞争性编程。

  

这不是一种新的阅读方式,而是上述答案中提到的一种方式,我只是对其进行了修改以满足自己的需要。

我使用以下宏从stdin读取不同的值:

use std::io;

#[allow(unused_macros)]
macro_rules! read {
    ($out:ident as $type:ty) => {
        let mut inner = String::new();
        io::stdin().read_line(&mut inner).expect("A String");
        let $out = inner.trim().parse::<$type>().expect("Parseble");
    };
}

#[allow(unused_macros)]
macro_rules! read_str {
    ($out:ident) => {
        let mut inner = String::new();
        io::stdin().read_line(&mut inner).expect("A String");
        let $out = inner.trim();
    };
}

#[allow(unused_macros)]
macro_rules! read_vec {
    ($out:ident as $type:ty) => {
        let mut inner = String::new();
        io::stdin().read_line(&mut inner).unwrap();
        let $out = inner
            .trim()
            .split_whitespace()
            .map(|s| s.parse::<$type>().unwrap())
            .collect::<Vec<$type>>();
    };
}

主要


fn main(){
   read!(x as u32);
   read!(y as f64);
   read!(z as char);
   println!("{} {} {}", x, y, z);

   read_vec!(v as u32); // Reads space separated integers and stops when newline is encountered.
   println!("{:?}", v);
}

  

注意:我不是Rust Expert,如果您认为有改进的方法,请告诉我。它将对我有帮助,谢谢。

答案 6 :(得分:0)

我肯定会使用Rust-Lang提供的文件系统std::fs(在此处查看更多信息:https://doc.rust-lang.org/stable/std/fs/),但更具体地说是https://doc.rust-lang.org/stable/std/fs/fn.read_to_string.html

假设您只想读取文本文件的输入,请尝试以下操作:

use std::fs
or
use std::fs::read_to_string

fn main() {
    println!("{}", fs::read_to_string("input.txt"));   
}