vote up 3 vote down star

Is the recent movement towards anonymous methods/functions by mainstream languages like C++ and C# something important, or a weird feature that violates OO principles?

Are recent libraries like the most recent version of Intel's Thread Building Blocks and Microsofts PPL and Linq that depend on such things a good thing, or not?

Are languages that currently reject anonymous methods/functions, like Java, making wise choices in sticking with a purely OO model, or are they falling behind by lacking a fundamental programming feature?

flag

4  
Java has anonymous classes that can have methods. They jumped on the anonymous bandwagon a while back. – amischiefr Sep 18 at 14:19
Pity the Java syntax is so verbose. – Tom Hawtin - tackline Sep 18 at 14:34
Who cares about "violations of OO principles"? Neither of the languages you mention support proper OOP in the first place. There are (at least in the case of C# and C++) other paradigms available to you instead. – jalf Sep 18 at 15:04
1  
Smalltalk, the father of most OO languages also has lamda expressions so this is not a new concept. Its just that languages like C++/C#/Java are catching up with research done decades ago. – Martin York Sep 18 at 16:24

8 Answers

vote up 17 vote down check

The expressive power of lambda expressions combined with fluent APIs like LINQ far outweigh any perceived violation of pure OO principles.

link|flag
Nicely said. If you spend enough time with it, it becomes natural and flows into the OO structures. – Dykam Sep 18 at 14:18
I agree. My interest was more in understanding the opposite point of view. Why do some languages reject such things? (For low level languages like C it's obvious, but others, why?) – RD1 Sep 18 at 14:40
@Rowan, other standing on principal, the other reason for not implementing it is that it's difficult :). I worked heavily on the underpinnings of the VB.Net implementation of lambda expressions. You'd be really surprised at how much time was spent in language design on this particular feature as opposed to the actual coding. – JaredPar Sep 18 at 14:47
vote up 0 vote down

How would it violate OO principles?

It doesn't violate encapsulation: A class is still in full control of which functions get access to its private members.

It doesn't interfere with inheritance or polymorphism either.

It only violates OO principles if you're a Java programmer and define "OO principles as "can be implemented in Java"

Luckily, no one outside the world of Java, have ever used such a definition of OOP.

It may be said to violate Java's philosophy, which I'd say is a good thing, because Java's philosophy is essentially "start with a broken and mangled version of OOP, and stay there, without ever adding to it or evolving it in any meaningful way". That's not a philosophy that deserves to stay unbroken.

But it doesn't violate the principles of OOP.

link|flag
vote up 1 vote down

Java's not "sticking with a purely OO model" out of principle; the Java community just can't agree on what functional additions to the language should look like or whether they're worth the additional complexity in the syntax. According to James Gosling:

Closures were left out of Java initially more because of time pressures than anything else. In the early days of Java the lack of closures was pretty painful, and so inner classes were born: an uncomfortable compromise that attempted to avoid a number of hard issues. But as is normal in so many design issues, the simplifications didn't really solve any problems, they just moved them.

(From "Understanding the closures debate", which is a pretty good overview of the state of the functional programming debate in the Java community as of last summer. The consensus seems to have been to punt on it for now.)

link|flag
Which is truly a shame because there are functional constructs (first class anonymous functions) that can turn a page full of code into a couple lines which are easily understandable (ie, map/fold over a list). – RHSeeger Sep 18 at 14:46
vote up 0 vote down

Callbacks are a fundamental part of OO. It rather makes sense to have good syntactical support for the common case of a single-method callback object. Exactly how that is implemented is another matter.

link|flag
vote up 1 vote down

C# has always had delegates; its always had event handling. The CLR 2.0 (and C# 2.0) introduced the concept of anonymous delegates to meet a variety of needs that could probably have been solved with design patterns in any OO technology. They've just made it official that functions are "first-class objects" in these technologies.

I dare say that the mixture of functional and object features in a technology like C# has become so useful that its hard to imagine writing applications without the benefits of both worlds.

link|flag
vote up 3 vote down

No inherent violation of OO pronciples anyway.. Not that I can see...

Encapsulation, Inheritence and Polymorphism being the canonical list, AM are not inconsistent with any of the three... They are a method, not a Type... So just like a full .Net 1.1 representation of a Method Delegate, they can be written to use or abuse any of the three OO principles.

link|flag
vote up 0 vote down

Python has always had them.

A function is a class of objects with a really narrow interface and not many attributes.

Python function objects have a number of built-in attributes, and you can always add more if you want.

link|flag
vote up 11 vote down

Object Orientation is a design philosophy, not a set of commandments on stone tablets.

Since lambda functions increase the power/expressiveness of the language many-fold, refusing them merely on "it violates pure OO model" is rather self-defeating: the overall goal is to design good software, NOT to design OO code.

Plus, I'm not quite certain that correctly written lambda functions "violate OO model" per se. More like are outside of the model.

link|flag
+1, though if it did somehow violate object-oriented principles, I'd be interested in thinking that through to see how I might want to adjust my designs to accommodate it. – Jeff Sternal Sep 18 at 15:40

Your Answer

Get an OpenID
or

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