设计停车系统
请你给一个停车场设计一个停车系统。停车场总共有三种不同大小的车位:大,中和小,每种尺寸分别有固定数目的车位。
请你实现 ParkingSystem 类:
ParkingSystem(int big, int medium, int small) 初始化 ParkingSystem 类,三个参数分别对应每种停车位的数目。
bool addCar(int carType) 检查是否有 carType 对应的停车位。 carType 有三种类型:大,中,小,分别用数字 1, 2 和 3 表示。一辆车只能停在 carType 对应尺寸的停车位中。如果没有空车位,请返回 false ,否则将该车停入车位并返回 true 。
实例
<?php class ParkingSystem{ private $car; function __construct(int $big , int $medium, int $small){ $this->car[0] =$big; $this->car[1] =$medium; $this->car[2] =$small; } public function addCar(int $carType){ if(!in_array($carType,[1,2,3])){ echo "输入类型不对";die; } if($this->car[$carType-1]==0){ return false; } $this->car[$carType-1]--; return true; } } $Parking =new ParkingSystem(3,5,0); $res =$Parking->addCar(3); var_dump($res);die;