Are the functional programming features provided in C# rich enough? Would a LISP programmer miss LISP when programming in C#.. whats missing??
|
2
|
|
|
|
|
|
Doing functional programming in C# is technically possible (well, any language that has function pointers or delegates equivalent can be "functional") -- but C# gets very very painful if you try to do much. Off the top of my head, in no particular order:
Edit: One more:
|
|||
|
|
I am, and I do. That is, I use Lisp at home and C# at work and I do miss Lisp when in C#. The question is a little funny because I don't consider (Common) Lisp any more "functional" than C# or Ruby or any other multi-paradigm language. In general, C#'s functional features are becoming pretty decent, to the point where they're probably Good Enough, if a bit awkward. (Common Lisp's support for functional programming sure isn't perfect, either!) But Common Lisp is a multi-paradigm language; C# doesn't (and may never) match Lisp on syntactic abstraction, code generation, method dispatch flexibility, and so on. If you're looking for an excuse to avoid learning Lisp because you think C# is just as powerful, sorry. :-) |
||
|
|
|
|
Per your question, as a Lisper, what I miss when programming in Java (sorry, I don't use C#):
C# addresses (2) and (3) with Per your title, as a functional programmer (Haskell), I miss what all those other guys said: immutability, full type inference, tuples, pattern matching, easier generics because no subclassing, strongly typed libraries. Also, as a Haskell programmer, I still don't like curlies and semi-colons. :) |
||||
|
|
|
If you're asking a Lisper as opposed to an ML-family functional programmer, you won't hear anything about tuples or inference. They will say one thing, smugly: MACROS. |
||||
|
|
|
Multiple return values. "out" and "ref" is unreadable compared to returning tuples. Better support for immutability, just like Jon said. Right now immutability on classes are possible due to human discipline. But the most lacking feature is a solid collection framework designed around immutability. In my current project I anticipated immutability would be a big win, and it was, but the collection framework is a horrible match. For example, say you want to add an employee to a company, like
just isn't very performant or nice to implement. At one point, I even considered making my own collections starting with a simple immutable Cons class. :) On the other hand, Linq worked out very nice for us. I really like the methods it introduces. I found the special Linq syntax not in my taste. EDIT: I've too low rank to comment so I'll reply to Jon's comment here. Jon, I decided it was a bad idea due to maintainability. The people that will maintain this project over the next decade probably don't have much Lisp/functional programming exposure. That reminds me of another thing. I wonder how many months of maintenance it will take before my immutable objects become mutable. (Disclaimer, IT business being something of a gold rush era at times I'm painfully aware that many developer don't even get what features like immutable and closures are.) |
|||
|
|
|
In addition to Jon's answer
Eric on why C# doesn't have deep inference: http://blogs.msdn.com/ericlippert/archive/2009/01/26/why-no-var-on-fields.aspx
http://blogs.msdn.com/jaredpar/archive/2008/11/10/comparing-continuations-in-f-and-c.aspx |
||||||||||
|
|
|
To expand somewhat on Jon's point, the real value for me in functional programming languages isn't what they've got, but what they're missing. Most of the "big" languages these days have (or can be tricked into having) the basic functional programming primitives like recursion, higher order functions, etc. So if you really want to, you can write in a functional programming style in most languages (hell, if you have tail-call optimisation in your C compiler, you can pretty much write functional-style code in C). On the other hand, what mainstream languages also have is a wealth of things that you don't have in a pure functional programming language, and those things can really "break" the functional model, and make it impossible to reason about your functional-style program in the same way as you would about a pure-functional language. Mutable local and global variables, all of the paraphenalia around mutable state concurrency (traditional multi-threaded programming), even iteration if mishandled, all make your functional-style code non-functional (as it were). Even though you might be able to restrain yourself from misusing the features in your mainstream programming language, it's pretty unlikely that everyone who touches the code over time would be able to restrain themselves, so you can't make assumptions about the functionality of your codebase without really thorough code reviews. Some of the "non-functional" problems are quite subtle, too, so people who want to write functional code can slip up. The best way to make sure you're being functional is to learn and use a functional programming language. I've managed to learn Erlang to the point that I'm now writing a game server in about two weeks of my very limited spare time, so it's not that much of a challenge -- I believe that functional programming languages, once you wrap your head around the basic concepts, are easier to learn because they're so much more spartan. |
||
|
|
|
Support for immutability, primarily. It should be easy to create an immutable type and verify that it's immutable. It should be easy to use an immutable type - support like object and collection initializers, but for the immutable case. After that: better type inference capabilities, tuples, pattern matching, and supporting libraries (again, immutable lists etc). EDIT: I should say that I'm not a functional programmer, but I'm a C# programmer trying to learn more functional ways. I'm currently helping out (in a small way) with a functional programming book, so I'm learning lots of stuff there. However, you will hopefully be pleased with LINQ. It does make life much easier for working with sequences of data. |
||||||||||
|
