All Questions
Tagged with object-oriented functional-programming
3 questions
13
votes
2
answers
2k
views
Is there a theory/abstraction behind OOP?
Functional programming has the very elegant Lambda Calculus and its variants as a backup theory. Is there such a thing for OOP? What is an abstraction for the object oriented model?
9
votes
2
answers
3k
views
Difference between multimethods and overloading
Context
I've been programming in java for a few years now. And atm i'm learning something totally different: Clojure.
There the expression problem can be solved by using multimethods whereas in java ...
4
votes
0
answers
121
views
Is there any research to indicate programmers are/are not moving to a hybrid of functional and object-oriented?
I am converting the OCaml Format module which does I/O and maintains state in a record with mutable values. As such it is a good candidate for me to convert to pure F#, pure C# and a hybrid.
Since ...