生成一个由3个不同的“子数组”组成的数组

本文关键字:数组 子数组 3个 一个 | 更新日期: 2023-09-27 17:53:03

我有一个类:

class All{
 A a;
 B b;
 C c;
}

现在我得到了3个数组:

A[] as;
B[] bs;
C[] cs;

可以为空(length=0)或null。
我需要在至少有一个元素的数组中创建一个包含所有对象的列表(我不需要空对象)。

For example:
    A[] as={a1, a2};
    B[] bs{};
    C[] cs{c1, c2};
 => Result: All[] = {
      All{a: a1, b:null, c:null},
      All{a: a1, b:null, c:c1},
      All{a: a1, b:null, c:c2},
      All{a: a2, b:null, c:null},
      All{a: a2, b:null, c:c1},
      All{a: a2, b:null, c:c2}
      All{a: null, b:null, c:c1},
      All{a: null, b:null, c:c2}
      //All{a: null, b:null, c:null} -> This is an empty object and I don't need it
};

如何生成All[]?

生成一个由3个不同的“子数组”组成的数组

这是你要找的吗?(你可能需要稍微润色一下)

List<A> awithnull = as.ToList();
List<B> bwithnull = bs.ToList();
List<C> cwithnull = cs.ToList();
awithnull.Add(null);
bwithnull.Add(null);
cwithnull.Add(null);
var result = from ae in awithnull
             from be in bwithnull
             from ce in cwithnull
             where (!(ae==null && be ==null && ce == null))
             select new All() {a = ae, b = be, c = ce};

给定Alls的定义:

class All
{
    public A A { get; set; }
    public B B { get; set; }
    public C C { get; set; }
}

应该这样做:

A[] myAs = new [] { new A(), new A(), new A()};
B[] myBs = new B[] {};
C[] myCs = new [] {new C(), new C()};
var combinations = (from a in myAs.Concat(new A[] { null })
                    from b in myBs.Concat(new B[] { null })
                    from c in myCs.Concat(new C[] { null })
                    where (!(a == null && b == null && c == null))
                    select new All() { A = a, B = b, C = c }).ToArray();

use object declare:

Object[] All;

您可以插入任何对象,包括您创建的所有类。