作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想一次读取一个文件的 N 行,可能使用 itertools::Itertools::chunks
。
当我这样做时:
for line in stdin.lock().lines() {
... // this is processing one line at a time
}
...虽然我正在缓冲输入,但我没有处理缓冲区。
最佳答案
你可以使用 chunks()
来自 itertools:
use itertools::Itertools; // 0.8.0
use std::io::BufRead;
fn main() {
let stdin = std::io::stdin();
let n = 3;
for lines in &stdin.lock().lines().chunks(n) {
for (i, line) in lines.enumerate() {
println!("Line {}: {:?}", i, line);
}
}
}
关于io - 我如何在 Rust 中一次读取和处理文件的 N 行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55331212/
我是一名优秀的程序员,十分优秀!