Of the five SOLID Principles, Dependency Inversion is one of them and the last one.
Can I quote JDBC
interface as an example of Dependency Inversion Principle?
Of the five SOLID Principles, Dependency Inversion is one of them and the last one.
Can I quote JDBC
interface as an example of Dependency Inversion Principle?
JDBC at its essence is a giant instance of the Adapter design pattern. While it may use Dependency Inversion somewhere in its implementation, this isn't what it's essentially about.