gpt4 book ai didi

c# - 在 C# 中创建复合泛型子类型的泛型列表

转载 作者:太空狗 更新时间:2023-10-29 20:27:41 25 4
gpt4 key购买 nike

我实现了以下分层数据结构:Tree → Branch → T

更新:很多人问:为什么不使用对象而不是 (或 或其他)?所以我修改了我的问题以说明我的“约束”。我们开始...

这里是示例 Tree:

*
├─Negative
│ ├─-2
├─0
│ ├─0
├─Positive
│ ├─2
│ ├─12
│ ├─2147483647

*
├─Spring
│ ├─Mar
│ ├─Apr
│ ├─May
├─Summer
│ ├─Jun
│ ├─Jul
│ ├─Aug
├─Fall
│ ├─Sep
│ ├─Oct
│ ├─Nov
├─Winter
│ ├─Dec
│ ├─Jan
│ ├─Feb

C#中的实现:

public class Tree<T>
{
public readonly List<Branch<T>> Branches = new List<Branch<T>>();
}

public class Branch<T>
{
public readonly List<T> Leaves = new List<T>();
public string Name { get; set; }
}

public class StringLeaf
{
public StringLeaf(string value) { Label = value; }
public string Label { get; private set; }
public override string ToString() { return Label; }
}

public class PositiveIntLeaf
{
private readonly int _value;
public PositiveIntLeaf(int value) { _value = value; }

public string Value
{
get { return _value < 0 ? "-" : _value.ToString(); }
}
public override string ToString() { return Value; }
}

public class IntTree : Tree<IntLeaf>
{
private readonly Branch<IntLeaf> _negatives = new Branch<IntLeaf> { Name = "Negative" };
private readonly Branch<IntLeaf> _zeros = new Branch<IntLeaf> { Name = "0" };
private readonly Branch<IntLeaf> _positives = new Branch<IntLeaf> { Name = "Positive" };

public IntTree()
{
Branches.AddRange(new []{
_negatives,
_zeros,
_positives
});
}

public void Add(int value)
{
if (value < 0) _negatives.Leaves.Add(new IntLeaf(value));
else if (value > 0) _positives.Leaves.Add(new IntLeaf(value));
else _zeros.Leaves.Add(new IntLeaf(value));
}
}

假设我有不同的树,我无法将它们放入列表:

IntTreeintTree = new IntTree();
intTree.Add(-2); intTree.Add(2); intTree.Add(0); intTree.Add(12); intTree.Add(int.MaxValue);
Tree<StringLeaf> months = new Tree<StringLeaf>{ Branches =
{
new Branch<StringLeaf> { Name = "Spring", Leaves = { new StringLeaf( "Mar"),new StringLeaf("Apr") ,new StringLeaf("May")} },
new Branch<StringLeaf> { Name = "Summer", Leaves = { new StringLeaf( "Jun"),new StringLeaf("Jul") ,new StringLeaf("Aug")} },
new Branch<StringLeaf> { Name = "Fall", Leaves = { new StringLeaf( "Sep"),new StringLeaf("Oct") ,new StringLeaf("Nov")} },
new Branch<StringLeaf> { Name = "Winter", Leaves = { new StringLeaf( "Dec"),new StringLeaf("Jan") ,new StringLeaf("Feb")} }
}};

var list = new [] { intTree, months };
var currentTree = list[0];
// Work with the current tree:
var count = currentTree.Branches.Count;
Display(currentTree);

错误是:没有找到隐式类型数组的最佳类型

我怎样才能得到所有这些树的列表?

我想强调的是,我只是想将它们放在一个列表中,也许遍历它并访问当前树和所有它的分支(例如显示他们的名字)。我不关心 T 是对象还是抽象基类!假设我只是调用 .ToString()。具体类型只对 IntTree 这样的子类型很重要。

最佳答案

你真的不能。这是泛型中称为协变和逆变的问题。您不能将长颈鹿和老虎塞进动物列表,并希望一切都好,只是因为您的收藏是动物列表。

关于这个问题的文章太多了,我就不一一赘述了。看看MSDN或谷歌其他文章。

关于c# - 在 C# 中创建复合泛型子类型的泛型列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20003217/

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