如何为堆栈或队列指定文字初始化程序?

发布于 2024-12-07 08:49:42 字数 427 浏览 0 评论 0原文

这个:

List<string> set = new List<string>() { "a","b" };

工作正常,但是:

Stack<string> set = new Stack<string>() { "a","b" };
Queue<string> set = new Queue<string>() { "a","b" };

失败了:

...does not contain a definition for 'Add'

这确实让我想知道为什么编译器愚蠢到要求添加。

那么,应该如何在队列/堆栈构造函数中进行初始化?

This:

List<string> set = new List<string>() { "a","b" };

works fine, but:

Stack<string> set = new Stack<string>() { "a","b" };
Queue<string> set = new Queue<string>() { "a","b" };

fails with:

...does not contain a definition for 'Add'

which does make me wonder why the compiler was dumb enough to ask for Add.

So, how should one initialise at a Queue/Stack constructor?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

陈年往事 2024-12-14 08:49:42

集合初始值设定项是一项编译器功能,它会对您传递的每个项目调用 Add 方法。
如果没有 Add 方法,则无法使用它。

相反,您可以调用采用 IEnumerableStackQueue 构造函数:

var stack = new Stack<int>(new [] { 1, 2, 3 });

Collection initializers are a compiler feature that call the Add method with each item you pass.
If there is no Add method, you can't use it.

Instead, you can call the Stack or Queue constructor that takes an IEnumerable<T>:

var stack = new Stack<int>(new [] { 1, 2, 3 });
倒带 2024-12-14 08:49:42

在 C# 6.0 中,您可以执行以下操作:

var stack = new Stack<string> () {"a","b"};

使用以下扩展方法

public static class Util
{
    public static void Add<T>(this Stack<T> me, T value)
    {
        me.Push(value);
    }
}

在此处输入图像描述

in C# 6.0, you can do this:

var stack = new Stack<string> () {"a","b"};

with below extension method

public static class Util
{
    public static void Add<T>(this Stack<T> me, T value)
    {
        me.Push(value);
    }
}

enter image description here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文