c#上的租车编程

时间:2015-09-13 08:21:29

标签: c#

我有租车计划的工作,但我有租赁课的问题。 如果我需要检查一下阵列中的这辆车已经租了吗?我该怎么办。 如果已经声明了这样的汽车库存数组:

static void Main(string[] args)
    {

        Car[] car;
        car = new Car[5];
        Car[] car;
        car = new Car[5];
        car[0] = new Car("Number", "Brand", "Model", Kilometers);
        and go on till car[4]

检查汽车应该怎么做?

1 个答案:

答案 0 :(得分:2)

只需向Boolean课程添加Car IsRent 属性,每次有人租车时,请将其值更改为 false 。这样的事情:

  if(car[/here put the index].IsRent==true)//car is not in rent,allow to rent.
 {
    car[/here put the index].IsRent=false;
      //rent the car.
    }


public bool IsRentM
{
  get { return IsRent; }
  set { IsRent = value; }


}

古德勒克。