Is there a book or a website where is explained how to solve some example problem X in OOP style and then is given and explained an opposed functional programming style solution? Perhaps one more example which solves the problem with the best of both worlds?

This would help me translate my pattern knowledge to functional programming and learn this stuff better.

The best would be if java/scala is used for the examples.

EDIT Till now there is no such thing like a book or a website that gives you what this question asks for.

link|improve this question

Unfortunately, as I know, there is no one book, that specifically concentrates on functional aspects of Scala. No one yet - Tony Morris with Paul Chiusano and Runar Bjarnason signed up to write one for Manning, and as they claiming it would be available very soon (but as I know, no definite date is known). – om-nom-nom Feb 18 at 16:41
Then i will have a look at that. – axaluss Feb 18 at 17:06
1  
Probably such a webpage with pattern examples can be created in wiki style. something like the OOPtoFP transition wiki in the manner "how to do X in OOP, FP, OOP+FP". – axaluss Feb 18 at 17:07
What about Wiki? – Marcin Feb 18 at 17:58
1  
@axaluss BTW, I wouldn't set OOP off FP (since scala has both quite nicely blended), it is likely to oppose FP and Imperative Programming – om-nom-nom Feb 19 at 0:35
show 7 more comments
feedback

8 Answers

There are sites where the same small program is written in different languages. For example, on Rosetta Code and PLEAC, you can choose a task, and see how it is written in your favorite OOP language, and then in a functional language (there is almost always an OCaml, Scala and Haskell entry).

link|improve this answer
there is no scala on PLEAC page (at least it is not listed in status), but anyways thanks for that – om-nom-nom Feb 23 at 15:35
And there is more a comparison of languages than of paradigms. But the idear is nice. – axaluss Feb 23 at 21:39
I don't think you can really compare paradigms without comparing languages. Functional programming is not the same in OCaml, Haskell, Erlang or Scala. – Fabrice Le Fessant Feb 24 at 8:24
@FabriceLeFessant I think that axaluss talked about more general concepts - like ARM in Java reworked into monaidic style or loan pattern in scala – om-nom-nom Feb 24 at 10:45
Let's look at the ARM example: for(i <- E){ F } is equivalent to List.iter (fun i -> F) E in OCaml, both are actually functional programming, there is no iterative programming here. Maybe what you mean is pure style, by opposition to impure, i.e. side-effects... – Fabrice Le Fessant Feb 24 at 11:57
feedback

There once was a blog series scala for Java refugees by Daniel Spiewak, which surely will not answer all of your questions, but maybe some first ones.

It's from 2008, so some details might have changed in scala land since then, but the direction should still be the same.

link|improve this answer
I already know the language and the features. Still i want to learn how to tackle Problem X the best way given the palette of FP and OOP patterns. – axaluss Feb 18 at 17:48
feedback

Somewhat related, this is a presentation by Peter Norvig on how the goals of commonly used patterns are achieved more elegantly in dynamic languages. Many of the examples are also relevant for the difference between OOP and functional programming style.

link|improve this answer
feedback

Your best bet would be to search the curriculum of CS university courses. Our course on declarative and functional programming was very good and showed a couple of classic OOP paradigms (e.g. an Array, a for-loop, a counter) and its functional programming counterpart.

Are you looking for something which is even more high-level? I am afraid the question How does the visitor pattern translate to Haskell? is a nonsensical question. It would be like asking what the OOP pattern equivalent for a reverse polish calculator is.

link|improve this answer
feedback

I think your best bet would be to go to the Computer Language Benchmark Game over at http://shootout.alioth.debian.org/u64q/scala.php.

They have a large selection of interesting, computationally-intensive problems for which a solution is provided in nearly every computer language (including Scala).

Ostensibly, the purpose of the site is to benchmark the performance of various language using these problems as a time and memory metric. But the solutions are often a good way to see the idioms of a particular language. Sometimes the solutions will not be written in the proper style for a particular language, but those solutions are usually replaced pretty quickly.

Unfortunately, the scala examples don't seem to be done in idiomatic, functional scala style at the moment. But if you compare, for example, pidigits in Java vs. Haskell, you can really see the difference between the functional and OOP implementations. Some of the other examples (i.e. binary-trees) are even pretty well commented in Haskell.

link|improve this answer
feedback

Best I could suggest to you is a mix of Books and a online site I used to understand patterns myself. Below are descriptions and helpful links I found. But best practice is to try out the patterns yourself- And when you are seeing patterns in your code without actually implementing them yourself - You have understanding of Design Patterns. Best thing to do here is to get an Opensource software and analyze the code.

According to GOF(Gang of Four) which describes design patterns there are 3 main types of patterns -

  • Creational Patterns
  • Structural Patterns
  • Behavioral Patterns

Creational Patterns

  • Abstract Factory - groups object factories that have a common theme.

  • Builder - constructs complex objects by separating construction and representation.

  • Factory Method - creates objects without specifying the exact class to create.

  • Prototype - creates objects by cloning an existing object.

  • Singleton - restricts object creation for a class to only one instance.

Structural Patterns

  • Adapter - allows classes with incompatible interfaces to work together by wrapping its own interface around that of an already existing class.

  • Bridge - decouples an abstraction from its implementation so that the two can vary independently.

  • Composite - composes zero-or-more similar objects so that they can be manipulated as one object.

  • Decorator - dynamically adds/overrides behaviour in an existing method of an object. Facade provides a simplified interface to a large body of code.

  • Flyweight - reduces the cost of creating and manipulating a large number of similar objects. Proxy provides a placeholder for another object to control access, reduce cost, and reduce complexity.

Behavioral Patterns

  • Chain of responsibility - delegates commands to a chain of processing objects.

  • Command - creates objects which encapsulate actions and parameters.

  • Interpreter - implements a specialized language.

  • Iterator - accesses the elements of an object sequentially without exposing its underlying representation.

  • Mediator - allows loose coupling between classes by being the only class that has detailed knowledge of their methods.

  • Memento - provides the ability to restore an object to its previous state (undo).

  • Observer - is a publish/subscribe pattern which allows a number of observer objects to see an event.

  • State - allows an object to alter its behavior when its internal state changes.

  • Strategy - allows one of a family of algorithms to be selected on-the-fly at runtime.

  • Template method - defines the skeleton of an algorithm as an abstract class, allowing its subclasses to provide concrete behavior.

  • Visitor - separates an algorithm from an object structure by moving the hierarchy of methods into one object.

Books that are recommended to be read when it comes to Design Patterns are -

Hope this helps... I would personally recommend Head First Design patterns because it will walk you through all the Design perspective of a pattern and how the pattern is formed.

link|improve this answer
feedback

The best thing I've found so far on this topic is this talk about Monadic patterns, compared to java solutions.

link|improve this answer
feedback

This is not quite what you are looking for but java and C# are very similar. Full overview for all basic pattern with a UML diagramm and code examples . Probable you like it: http://tinyurl.com/3k7vh

And I like this book, easy to read http://tinyurl.com/74ttuhe and the book HP http://tinyurl.com/7kw7enr

have fun

link|improve this answer
Not even close. The question not about patterns itself, but about transition from OOP to FP patterns. – om-nom-nom Feb 28 at 19:48
feedback

Your Answer

 
or
required, but never shown

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