gpt4 book ai didi

c# - 如何检查队列是否为空?

转载 作者:IT王子 更新时间:2023-10-29 04:05:47 24 4
gpt4 key购买 nike

在 C# 中,如何检查队列是否为空?

我想遍历队列的元素,我需要知道什么时候停止。我怎样才能做到这一点?

最佳答案

假设您的意思是 Queue<T> 可以只使用:

if (queue.Count != 0)

但何必呢?不管怎样,只要遍历它,如果它是空的,你就永远不会进入正文:

Queue<string> queue = new Queue<string>();

// It's fine to use foreach...
foreach (string x in queue)
{
// We just won't get in here...
}

关于c# - 如何检查队列是否为空?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7968631/

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