In C#/Java, the dependency inversion principle is often demonstrated by high-level classes that depends on an interface/abstraction (that it owns). Low-level classes will implement the interface, thus inverting the dependency.
I wonder, how is it applied in object-oriented languages with no interface? For example, I'm not an expert in Ruby, but it seems that in this language you can't define interfaces like in Java/.NET
-
In Python (and I assume other languages you're asking about), every instance is an interface. See, for example: Take 2: Why we use SOLID in static languages and how we get the same functionality for cheap in dynamic languagesuser16764– user167642013年04月17日 02:32:26 +00:00Commented Apr 17, 2013 at 2:32
1 Answer 1
Even though you don't have explicit interfaces in dynamic languages, the dependency inversion principle can be followed by writing the client code against an abstract representation of the dependency, which the concrete "implementers" will adhere to via duck typing.
In a sense, that's the default in a dynamic language, and it could be argued that the dependency inversion principle is followed without any conscious effort. But, in practice it's worthwhile to consider the abstract representation of your concrete classes, to gain more insight into the domain, and to decouple from any implementation details that don't capture the essence of the abstraction.
Explore related questions
See similar questions with these tags.