用c#编写汽车租赁程序

本文关键字:汽车租赁 程序 | 更新日期: 2023-09-27 18:12:27

我在汽车租赁程序上工作,但是我在租赁类上有一些问题。如果我需要检查数组中的这辆车是否已经租了?我该怎么办呢?如果有像这样声明汽车库存数组:

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]

我该怎么检查这辆车?

用c#编写汽车租赁程序

只需添加一个Boolean IsRent属性到您的Car类,并且每次有人租车时,将其值更改为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; }

}

古德勒克。