הבדלים בין Ioc לבין dependency injection

שיווקי

New member
הבדלים בין Ioc לבין dependency injection

קראתי מספר דוגמאות, חלק כנראה התבלבלו בעצמם לגבי 2 המושגים.

dependency injection - מבין מה זה. יותר רוצה לשים דגש על Ioc.
שניהם, לפי הבנתי, הם design pattern.

מה זה להלן?
קוד:
IoC container.
A design patern.

Dependency injections:
public class TextEditor {

    private IocSpellChecker checker;

    public TextEditor(IocSpellChecker checker) {
        this.checker = checker;
    }
}
האם הנ"ל זה ioc או dependecy injection?
רציתי דוגמה לioc ב-react (אם זה לא הנ"ל).

האם, כשאני ממש redux, אני מממש למעשה ioc?

תודה.
 
למעלה