Declares and create an array of 5 instances of Vehicle, two of which should be Dumpers, two of which should be Excavators and the other should be a Telehandler.
Dumper, Excavator and Telehandler are subclasses of Vehicle.
package com.company;
public class Main {
public static class Vehicle{
}
public static class Dumpers extends Vehicle{
}
public static class Excavators extends Vehicle{
}
public static class Telehandler extends Vehicle{
}
static int sum(int a, int b) {
int total;
total = a + b;
return total;
}
public static void main(String[] args) {
Vehicle[] vehicle= {new Dumpers(), new Dumpers(), new Excavators(), new Excavators(), new Telehandler()};
}
}