gpt4 book ai didi

stack - 从向量中重复 pop() 项目的更简洁的方法是什么?

转载 作者:行者123 更新时间:2023-11-29 08:22:04 26 4
gpt4 key购买 nike

当使用向量作为堆栈时(存储被压入和弹出的状态)

while stack.len() != 0 {
let state = stack.pop().unwrap();
// ... optionally push other states onto the stack.
}

在 Rust 中有没有更简洁的方法来做到这一点?

最佳答案

您可以使用 pop() 的事实返回 Option<T>并使用 while let 匹配循环:

while let Some(state) = stack.pop() {
// ... fine to call stack.push() here
}

while let脱糖成如下内容:

loop {
match stack.pop() {
Some(state) => {
// ... fine to call stack.push() here
}
_ => break
}
}

关于stack - 从向量中重复 pop() 项目的更简洁的方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38911652/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com