Skip to content
Advertisement

What is a good way to implement calculations for extended classes?

I have the following classes:

JavaScript
JavaScript
JavaScript
JavaScript

I would like to create a method like

JavaScript

Where I only pass in the nodes, and the logic in either the method, or the nodes, or the map recognizes what kind of map I’m using. My current solution looks like this:

JavaScript

When I look at this code, I think there has to be a better way to implement this. Could you recommend a nice object oriented way of implementing this? I can create any reference in any object, the goal is to have a nice solution. Thanks!

Advertisement

Answer

I do think there is a right answer for this, just have an abstract getMoveCost method on Map and implement it in each subclass. Then you can just call map.getMoveCost(from, to).

JavaScript
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement