+ 1
Vehicle() is the constructor, meaning it is how you create an instance of the class. Constructors can not be void because they always return an instance. They can not be static because static means that the method is not tied to a single instance, but it has to be in order to create a new instance.
21st Mar 2018, 4:09 PM
Ariela
Ariela - avatar