Would it be bad design to have one class which has fields (e.g. top speed of vehicle) and use this by each of the concrete types? Would this be bad design?
No, not bad design. An alternative is to have a abstract / pure virtual property for each field (e.g. top speed) ... if you have a lot of these properties, and if the properties are simple (e.g. just return a number, don't actually do anything complicated) then your idea of a class which contains the specialized property values seems simpler than having that many more abstract / pure virtual properties.
Also, if I store state in this class (e.g. use the fields), then would it have to be static?
It's OK if it's static, if-and-only-if it applies for every instance of the class. For example, it's OK to define "top speed" as static (all busses have the same top speed), but not "current speed" (different busses actually travelling at different speeds at any given moment).
Just to be clear, I think you're suggesting a design that's something like this:
interface IVehicle
{
void accelerate();
}
sealed class VehicleProperties
{
const int topSpeed;
}
class VehicleImplementation : IVehicle
{
//const data
const VehicleProperties vehicleProperties;
//non-const instance/state data
int currentSpeed;
//ctor
VehicleImplementation(VehicleProperties vehicleProperties)
{
this.vehicleProperties = vehicleProperties;
}
//implement IVehicle methods
void accelerate()
{
if (currentSpeed => vehicleProperties.topSpeed)
return;
... else todo: accelerate ...
}
}
class Car : VehicleImplementation
{
//static properties associated with the Car type
static VehicleProperties carProperties = new VehicleProperties(120);
//ctor
Car()
: VehicleImplementation(carProperties)
{}
//IVehicle methods already implemented by
//the VehicleImplementation base class
}
