我需要创建另一个类的数组。例子:
namespace std
{
public class Car
{
double number,id;
public Car()
{
// initializing my variables for example:
number = Random.nextdouble();
}
}
public class Factory
{
public Factory(int num)
{
Car[] arr = new Car(num);
}
}
}
问题是我收到此错误:
“Car”不包含采用“1”参数的构造函数
我只需要一个类中的数组Car
(Factory
汽车变量用它的构造函数初始化)。