-1

我写了一些代码,它有一个名为Cars如下的类:

public class Cars
{
    public Cars()
    {
        string ma;
        int pe;
        Console.WriteLine("PLz put the car  name:");
        ma = Console.ReadLine();
        Console.WriteLine("PLz put  car no  :");
        pe = Convert.ToInt16( Console.ReadLine());
    }

}

现在我想创建它的多个对象,例如列表或数组。
我知道这段代码,但我不知道如何为此使用 for 循环,以防它可以自动创建多辆汽车

Cars[] car = new Cars[10];

或者

List <Cars> 

问题是我不知道如何使用它们,如果可以,请帮助我。

4

2 回答 2

1

我认为您正在寻找的是:

Cars[] car = new Cars[10];

for (int i = 0; i < 10; i++)
{
    car[i] = new Cars();
}

或使用List<T>

List<Cars> car = new List<Cars>();

for (int i = 0; i < 10; i++)
{
    car.Add(new Car());
}    

但是,我建议您将Console函数移到类之外,而是使用如下构造函数:

public Cars(string ma, int pe)
{
    // assign to properties, etc.
}
于 2012-11-23T19:30:56.447 回答
0

有点像下面的东西,会帮助你。但就像那些人所说的,你需要从基础开始,从书本上阅读总是最好的。

namespace Cars
{
    class Program
    {
        static void Main(string[] args)
        {
            List<Cars> carList = new List<Cars>();

            Console.WriteLine("PLz put the car  name:");
            string ma = Console.ReadLine();
            Console.WriteLine("PLz put  car no  :");
             int pe = Convert.ToInt16(Console.ReadLine());

            carList.Add(new Cars(ma,pe));
        }



        public class Cars
        {

            string ma;
            int pe;

            public Cars(string carName, int reg)
            {
                ma = carName;
                pe = reg;

            }

        }
    }
}
于 2012-11-23T19:46:40.670 回答