如何投放对象队列对象的/隐蔽名单 [英] How to cast/ covert List of objects to queue of objects

查看:122
本文介绍了如何投放对象队列对象的/隐蔽名单的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要的对象的列表转换为队列保持相同的顺序

i need to convert a list of Objects to a Queue maintaining the same order

任何想法,该怎么办呢?

Any idea how to do it?

感谢

推荐答案

队列有一个构造函数在的ICollection 。您可以将您的列表到队列中使用相同的元素初始化:

Queue has a constructor that takes in an ICollection. You can pass your list into the queue to initialize it with the same elements:

var queue = new Queue<T>(list);    // where 'T' is the lists data type.

这篇关于如何投放对象队列对象的/隐蔽名单的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆