a5-test #12

Merged
heimoshuiyu merged 5 commits from a5-test into master 2022-04-28 12:07:33 +08:00
Showing only changes of commit a94d0e9d87 - Show all commits

View File

@@ -0,0 +1,10 @@
//Q1
public class StartGrading {
public static void testVehicle() {
//The Vehicle class is abstract. We cannot create objects from this class. Therefore, we cannot test anything
}
public static void main(String[] args) {
Vehicle.testVehicle();
}
}