vote up 4 vote down star
1

Are there any existing modern-day programming languages that explicitly have dependency injection as a language feature, and if so, are there any examples of how such programming languages use their syntax to separate program dependencies from their concrete implementations?

(Please Note: I'm not looking for an DI/IOC framework--I'm actually looking for a programming language that actually has this feature built into the language).

flag

47% accept rate

3 Answers

vote up 3 vote down

I don't mean to sound like a jerk, but every OO language supports dependency injection. No special syntax is required. Just construct your object with their dependencies (or set their dependencies later).

You can actually wire up all your dependencies somewhere near the top of the program - not necessarily main(), but close to the top.

link|flag
1  
I'm not looking for a programming language that lets you implement dependency injection, I'm actually looking for a language that says "I want to create an IFoo" and then the compiler/runtime decides what gets created without specifying the concrete classes at compile time. – plaureano Oct 4 at 5:05
Ah, I think you're looking for language support for autowiring or auto service discovery. My mistake. – Daniel Yankowsky Oct 4 at 18:27
vote up 3 vote down

Noop supposedly does this, but I haven't seen the language specification (my patience ran out before I found it).

link|flag
1  
The injection proposal for noop is discussed at code.google.com/p/noop/wiki/Features and code.google.com/p/noop/… The proposal for noop injection support will be based on Google's Guice framework for injection. code.google.com/p/google-guice – Kaka Woef Oct 3 at 8:05
vote up 4 vote down

You won't find dependency injection as a language feature, as it's generally seen as a design pattern. Design patterns arise as workarounds for missing language features - for example if you have first class types as a language feature you don't need the factory pattern ( see Norvig's presentation ), if you have multi-methods as a language feature you don't need the double dispatch pattern.

The language feature for which DI is the design pattern is "parametric modules". See the discussion of modules vs DI relating to Gilad Bracha's language Newspeak

link|flag
1  
And see also the discussion on "Design Patterns are Signs of Weakness in Programming Languages" -- oreillynet.com/onlamp/blog/… – Kaka Woef Oct 3 at 8:55

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.