如果我有两个类型字符串列表(或任何其他类型),加入这两个列表的快捷方法是什么?
订单应该保持不变。应删除重复项(尽管两个链接中的每个项都是唯一的)。我在google搜索时并没有发现太多,并且不想实现任何.NET接口以提高传输速度。
答案 0 :(得分:485)
你可以尝试:
List<string> a = new List<string>();
List<string> b = new List<string>();
a.AddRange(b);
这会保留列表的顺序,但不会删除Union
会执行的任何重复项。
这会更改列表a
。如果您想保留原始列表,那么您应该使用Concat
(正如其他答案中所指出的那样):
var newList = a.Concat(b);
只要IEnumerable
不为空,就会返回a
。
答案 1 :(得分:101)
空间开销最小的方法是使用Concat扩展方法。
var combined = list1.Concat(list2);
它创建一个IEnumerable<T>
的实例,它将按顺序枚举list1和list2的元素。
答案 2 :(得分:38)
Union方法可能会满足您的需求。您没有指定订单或重复是否重要。
获取两个IEnumerables并执行一个联合,如下所示:
int[] ints1 = { 5, 3, 9, 7, 5, 9, 3, 7 };
int[] ints2 = { 8, 3, 6, 4, 4, 9, 1, 0 };
IEnumerable<int> union = ints1.Union(ints2);
// yields { 5, 3, 9, 7, 8, 6, 4, 1, 0 }
答案 3 :(得分:20)
这样的事情:
firstList.AddRange (secondList);
或者,您可以使用System.Linq中定义的“Union”扩展方法。 使用'Union',您还可以指定比较器,可用于指定项目是否应该联合。
像这样:
List<int> one = new List<int> { 1, 2, 3, 4, 5 };
List<int> second=new List<int> { 1, 2, 5, 6 };
var result = one.Union (second, new EqComparer ());
foreach( int x in result )
{
Console.WriteLine (x);
}
Console.ReadLine ();
#region IEqualityComparer<int> Members
public class EqComparer : IEqualityComparer<int>
{
public bool Equals( int x, int y )
{
return x == y;
}
public int GetHashCode( int obj )
{
return obj.GetHashCode ();
}
}
#endregion
答案 4 :(得分:14)
targetList = list1.Concat(list2).ToList();
它的工作正常我是这么认为的。如前所述,Concat返回一个新序列,在将结果转换为List时,它可以完美地完成工作。使用AddRange方法时,隐式转换有时可能会失败。
答案 5 :(得分:12)
如果两个列表中都存在某些项目,您可以使用
var all = list1.Concat(list2).Concat(list3) ... Concat(listN).Distinct().ToList();
答案 6 :(得分:7)
只要它们属于同一类型,使用AddRange非常简单:
list2.AddRange(list1);
答案 7 :(得分:7)
var bigList = new List<int> { 1, 2, 3 }
.Concat(new List<int> { 4, 5, 6 })
.ToList(); /// yields { 1, 2, 3, 4, 5, 6 }
答案 8 :(得分:6)
aList.AddRange( anotherList );
答案 9 :(得分:4)
List<string> list1 = new List<string>();
list1.Add("dot");
list1.Add("net");
List<string> list2 = new List<string>();
list2.Add("pearls");
list2.Add("!");
var result = list1.Concat(list2);
答案 10 :(得分:3)
单向:List.AddRange()取决于类型?
答案 11 :(得分:1)
请参阅此link
public class ProductA
{
public string Name { get; set; }
public int Code { get; set; }
}
public class ProductComparer : IEqualityComparer<ProductA>
{
public bool Equals(ProductA x, ProductA y)
{
//Check whether the objects are the same object.
if (Object.ReferenceEquals(x, y)) return true;
//Check whether the products' properties are equal.
return x != null && y != null && x.Code.Equals(y.Code) && x.Name.Equals(y.Name);
}
public int GetHashCode(ProductA obj)
{
//Get hash code for the Name field if it is not null.
int hashProductName = obj.Name == null ? 0 : obj.Name.GetHashCode();
//Get hash code for the Code field.
int hashProductCode = obj.Code.GetHashCode();
//Calculate the hash code for the product.
return hashProductName ^ hashProductCode;
}
}
ProductA[] store1 = { new ProductA { Name = "apple", Code = 9 },
new ProductA { Name = "orange", Code = 4 } };
ProductA[] store2 = { new ProductA { Name = "apple", Code = 9 },
new ProductA { Name = "lemon", Code = 12 } };
//从两个阵列中获取产品 //不包括重复项。
IEnumerable<ProductA> union =
store1.Union(store2);
foreach (var product in union)
Console.WriteLine(product.Name + " " + product.Code);
/*
This code produces the following output:
apple 9
orange 4
lemon 12
*/
答案 12 :(得分:0)
我只想测试Union
如何在重叠的引用类型对象集合上使用默认比较器。
我的目标是:
class MyInt
{
public int val;
public override string ToString()
{
return val.ToString();
}
}
我的测试代码是:
MyInt[] myInts1 = new MyInt[10];
MyInt[] myInts2 = new MyInt[10];
int overlapFrom = 4;
Console.WriteLine("overlapFrom: {0}", overlapFrom);
Action<IEnumerable<MyInt>, string> printMyInts = (myInts, myIntsName) => Console.WriteLine("{2} ({0}): {1}", myInts.Count(), string.Join(" ", myInts), myIntsName);
for (int i = 0; i < myInts1.Length; i++)
myInts1[i] = new MyInt { val = i };
printMyInts(myInts1, nameof(myInts1));
int j = 0;
for (; j + overlapFrom < myInts1.Length; j++)
myInts2[j] = myInts1[j + overlapFrom];
for (; j < myInts2.Length; j++)
myInts2[j] = new MyInt { val = j + overlapFrom };
printMyInts(myInts2, nameof(myInts2));
IEnumerable<MyInt> myUnion = myInts1.Union(myInts2);
printMyInts(myUnion, nameof(myUnion));
for (int i = 0; i < myInts2.Length; i++)
myInts2[i].val += 10;
printMyInts(myInts2, nameof(myInts2));
printMyInts(myUnion, nameof(myUnion));
for (int i = 0; i < myInts1.Length; i++)
myInts1[i].val = i;
printMyInts(myInts1, nameof(myInts1));
printMyInts(myUnion, nameof(myUnion));
输出结果为:
overlapFrom: 4
myInts1 (10): 0 1 2 3 4 5 6 7 8 9
myInts2 (10): 4 5 6 7 8 9 10 11 12 13
myUnion (14): 0 1 2 3 4 5 6 7 8 9 10 11 12 13
myInts2 (10): 14 15 16 17 18 19 20 21 22 23
myUnion (14): 0 1 2 3 14 15 16 17 18 19 20 21 22 23
myInts1 (10): 0 1 2 3 4 5 6 7 8 9
myUnion (14): 0 1 2 3 4 5 6 7 8 9 20 21 22 23
所以,一切正常。
答案 13 :(得分:0)
我使用的两个选项是:
list1.AddRange(list2);
或
list1.Concat(list2);
但是我注意到,当我使用带有递归函数的AddRange
方法时,我经常调用自己,因为达到了最大维数,因此我得到了一个SystemOutOfMemoryException。
(Google翻译消息)
数组维度超出了支持的范围。
使用Concat
解决了这个问题。
答案 14 :(得分:0)
有一种方式,我没有看到提到的可能会更强大,特别是如果你想以某种方式改变每个元素(例如你想要.Trim()
所有元素。
List<string> a = new List<string>();
List<string> b = new List<string>();
// ...
b.ForEach(x=>a.Add(x.Trim()));