develop #1

Open
Z.Gharagozloo.M wants to merge 10 commits from develop into master
Showing only changes of commit fe69260c63 - Show all commits
+7 -6
View File
@@ -1,6 +1,9 @@
package org.util;
import org.*;
import org.model.Car;
import org.model.ElectricCar;
import org.model.GasCar;
import org.model.SportsCar;
import org.model.Vehicle;
/*
@@ -11,12 +14,10 @@ import org.model.Vehicle;
public class VehicleInspector {
public static void inspect(Vehicle v) {
v.basicInfo();
// TODO:
// If ElectricCar → print "Check battery system"
// If SportsCar → print "Check brakes and performance"
// If GasCar → print "Check engine and oil"
if (v instanceof SportsCar) {System.out.println("Check brakes and performance");}
else if (v instanceof ElectricCar) {System.out.println("Check battery system");}
else if (v instanceof GasCar) {System.out.println("Check engine and oil");}
}
}