vote up 23 vote down star
14

From day 1 of my programming career, I started with object-oriented programming. However, I'm interested in learning other paradigms (something which I've said here on SO a number of times is a good thing, but I haven't had the time to do). I think I'm not only ready, but have the time, so I'll be starting functional programming with F#.

However, I'm not sure how to structure much less design applications. I'm used to the one-class-per-file and class-noun/function-verb ideas in OO programming. How do you design and structure functional applications?

flag

7 Answers

vote up 9 vote down check

Read the SICP.

Also, there is a PDF Version available.

link|flag
2  
See this guy's reading notes on SICP - very comprehensive. eli.thegreenplace.net/category/programming/… – ripper234 Feb 17 at 20:18
vote up 4 vote down

Given that modern functional languages (i.e. not lisps) by default use early-bound polymorphic functions (efficiently), and that object-orientation is just a particular way of arranging to have polymorphic functions, it's not really very different, if you know how to design properly encapsulated classes.

Lisps use late-binding to achieve a similar effect. To be honest, there's not much difference, except that you don't explictly declare the structure of types.

If you've programmed extensively with C++ template functions, then you probably have an idea already.

In any case, the answer is small "classes" and instead of modifying internal state, you have to return a new version with different state.

link|flag
So really, it's a lot of the same stuff. Just a different way of thinking. I noticed that in C, I was using structs in the same way I use classes, which might have been good or bad (I know C, but I'm not C-ace). Similar things apply? – Thomas Owens Oct 10 '08 at 16:29
I'm not sure how you can apply polymorphic to functional programming. – dacracot Oct 10 '08 at 16:31
Youcan still modify structs, which is a difference, but it's a similar design process. The main difference is the focus on very well defined, well behaved interfaces, that allow you to use e.g. iteration functions sensibly. That habit helps smooth out programme structures, and speeds development. – Marcin Oct 10 '08 at 16:33
@dacracot - read this en.wikipedia.org/wiki/Type_polymorphism to see how polymorphism applies to functional programming – jop Oct 10 '08 at 16:44
1  
Dacracot, this definition is not context sensitive. This definition is also the definition of polymorphism that applies to OO. Just because you don't understand it, it doesn't make it incorrect or misleading. – Marcin Oct 10 '08 at 18:39
show 4 more comments
vote up 2 vote down

Functional programming is a different paradigm for sure. Perhaps the easiest way to wrap your head around it is to insist that the design be laid out using a flow chart. Each function is distinct, no inheritance, no polymorphism, distinct. The data is passed around from function to function to make deletions, updates, insertion, and create new data.

link|flag
I believe a professor talked about this once...something about stomping all over the data to create something new. Is this what he meant? – Thomas Owens Oct 10 '08 at 16:36
I believe so. A big issue that the functional programming brings to the developer/designer is care and feeding of the data blob. It is separate and a part from the functions. You have to structure it very carefully to be compatible with all the functions that want to get at it. – dacracot Oct 10 '08 at 16:45
vote up 4 vote down

You might want to check out a recent blog entry of mine: How does functional programming affect the structure of your code?

At a high level, an OO design methodology is still quite useful for structuring an F# program, but you'll find this breaking down (more exceptions to the rule) as you get down to lower levels. At a physical level, "one class per file" will not work in all cases, as mutually recursive types need to be defined in the same file (type Class1 = ... and Class2 = ...), and a bit of your code may reside in "free" functions not bound to a particular class (this is what F# "module"s are good for). The file-ordering constraints in F# will also force you to think critically about the dependencies among types in your program; this is a double-edged sword, as it may take more work/thought to untangle high-level dependencies, but will yield programs that are organized in a way that always makes them approachable (as the most primitive entities always come first and you can always read a program from 'top to bottom' and have new things introduced one-by-one, rather than just start looking a directory full of files of code and not know 'where to start').

link|flag
vote up 1 vote down

How to Design Programs is all about this (at tiresome length, using Scheme instead of F#, but the principles carry over). Briefly, your code mirrors your datatypes; this idea goes back to old-fashioned "structured programming", only functional programming is more explicit about it, and with fancier datatypes.

link|flag
vote up 2 vote down

F# provides the conventional OO approachs for large-scale structured programming (e.g. interfaces) and does not attempt to provide the experimental approaches pioneered in languages like OCaml (e.g. functors).

Consequently, the large-scale structuring of F# programs is essentially the same as that of C# programs.

link|flag
vote up 1 vote down

On structuring functional programs:

While OO languages structure the code with classes, functional languages structure it with modules. Objects contain state and methods, modules contain data types and functions. In both cases the structural units group data types together with related behavior. Both paradigms have tools for building and enforcing abstraction barriers.

I would highly recommend picking a functional programming language you are comfortable with (F#, OCaml, Haskell, or Scheme) and taking a long look at how its standard library is structured.

Compare, for example, the OCaml Stack module with System.Collections.Generic.Stack from .NET or a similar collection in Java.

link|flag
Objects do not necessarily contain state. Look at functional object update in OCaml, for example. – Jon Harrop Oct 5 at 20:26

Your Answer

Get an OpenID
or

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