public void garerVoiture(Voiture v) { if (cpt < 5) { tabVoiture[cpt] = v; cpt++; } else { throw new ParkingException("Pas de place dans le parking"); } }
public Parking() { tabVoiture = new Voiture[5]; }