Rust语言编程实例100题-075
题目:Rust迭代器专项练习。迭代器模式是将遍历数据集合的行为抽象为单独的迭代对象,这样在遍历集合时可以把集合中所有元素按顺序传递给处理逻辑。
要求:使用迭代器中的any消费器,求数组[1,5,7,9,11,23,24]个数中,是否存在偶数。
程序分析:无。
知识点:Rust迭代器
参考程序代码:
fn main() {
let num: Vec<i32> = vec![1, 5, 7, 9, 11, 23, 24];
let result = num.iter().any(|x| { x % 2 == 0 });
dbg!(result);
}
程序执行结果:
result = true
Process finished with exit code 0
网友评论