Dependency Inversion Principle in java from SOLID design principle.

preview_player
Показать описание
This is the last part of the SOLID design principle series. Get all the previous SOLID design principles at below links
Рекомендации по теме
Комментарии
Автор

this was simple and easiest way to explain this principle <3 thanks a lot.

codeNgame
Автор

One question, so at the end if we would call the implement method from the Project class, we would need to use our interface like so (?):
Developer dev = new BackEndDeveloper();
project.implement(dev);

or we could also do

Developer dev = new FrontEndDeveloper();
project.implement(dev);

depending on what we need... right?

Satenc
Автор

the classic indian guy with bad microphone tutorial

RitaTheCuteFox