Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I make a polymorphic method with different signatures

Consider I have some abstract Vehicle class and car, truck, motorcycle abstract classes which derive from Vehicle. Also imagine that I have to be able to create a fueled based car or electric based car and so on for truck and motorcycle as well. (concrete classes)

Two questions:

1.Consider that I want to fill up energy in a vehicle without knowing what it is, in a polymorphic way. For example if the vehicle is fuel based I want to fill it with fuel and the method should be with 3 parameters:
void FillUpEnergy(EfuelType i_fuelType,int amounOfEnergy, int maxAmountOfEnergy)

but for electricy based vehicle I need almost the same function signture but this time without fuel type of course, for example (2 parameters):

void FillUpEnergy(int amounOfEnergy, int maxAmountOfEnergy) 

Can I do a polymorhic FillUpEnergy method with the above constraints? (different method's signatures)

2.In my implementation all the concrete classes hold a reference for Engine(another abstract class) which represent a FuelEngine or ElectricEngine (other concrete classes I have which derive from Engine). For example I have a concrete class named ElectricCar which holds a reference for ElectricEngine.
Is this architecture good enough or are there better ways to implement a garage system? (In terms of Object oriented design etc..)

like image 356
JavaSa Avatar asked Aug 06 '12 21:08

JavaSa


People also ask

How can you enable polymorphic behavior between related classes?

You can use polymorphism to solve this problem in two basic steps: Create a class hierarchy in which each specific shape class derives from a common base class. Use a virtual method to invoke the appropriate method on any derived class through a single call to the base class method.

What is the point of polymorphism?

Polymorphism allows us to perform a single action in different ways. In other words, polymorphism allows you to define one interface and have multiple implementations. The word “poly” means many and “morphs” means forms, So it means many forms.


1 Answers

You cannot make a polymorphic "push-style" method with different signatures, but you can make a polymorphic "pull-style" method using the well-publicized Visitor Pattern.

The idea is to invert the sequence of interaction, and let the car object decide what to do: Instead of calling FillUpEnergy and giving the car what you think it needs, call FillUpEnergy and let the car take what it knows it needs, like this:

interface IEnergyProvider {
    void TakeFuel(EfuelType i_fuelType, int amounOfEnergy);
    void TakeElectricity(int amounOfEnergy);
}
interface ICar {
    void FillUpEnergy(IEnergyProvider provider);
}

Now the signature of your polymorphic method is fixed, but the dispatch of the method takes two legs instead of one:

  • You call myCar.FillUpEnergy(myProvider)
  • The car calls myProvider.TakeFuel or myProvider.TakeElectricity
like image 59
Sergey Kalinichenko Avatar answered Oct 24 '22 17:10

Sergey Kalinichenko