vote up 1 vote down star

As I have read through stackoverflow answers and questions I am getting the impression that OO is compartmentalized to to be inherently imperative.

But isn't OO just a way to compartmentalize code and data into real world Objects?

If so, why would that forgo other lower level paradigm to work in such a platform?

IOW, an Object Based generic type system that is immutable by default would be the way a functional first language would work, an object based generic type system that is mutable by default would be the world of imperative languages.

Or am I missing something altogether?

flag

6 Answers

vote up 14 vote down check

No. OO and imperative are two orthogonal concepts.

For example:

  • The Common Lisp Object System is an example of Lisp OO and maybe the most complex object system around.
  • OCaml is a functional language with an object system and a module system supporting object-oriented organization
  • Scala is a functional language with a very flexible OO system
  • Haskell allows you to write object-oriented code using higher-kinded polymorphism

There are lots of different ways to be object-oriented.

link|flag
That is what I was seeing in my review of Programming languages, But wasn't getting that impression when reading answers here. Haven't programmed much since the 80's and getting back into it. OO was just becoming new thing to learn then. – DouglasH Feb 16 at 15:13
@Doug, SO is heavily C#/.NET, Java, and C++ biased. Mostly, because that's what most people work in. Non-procedural languages are more niche and so they come up less frequently. – stbuton Feb 16 at 15:24
objects are stateful, which is an imperative concept; pure functional languages are stateless and therefore can't have objects; monads are a workaround for languages which want to stay pure (Haskell), while (all?) the other languages you listed aren't pure functional ones - even LISP! – Christoph Feb 16 at 16:25
@Christoph, OP never mentioned anything about requiring functional languages to be pure-functional. Your view of OO is too narrow. – stbuton Feb 16 at 16:35
@stbuton: my point is that oo is only possible in languages which aren't purely functional - they have to incorporate imperative features, and that's because - drum roll - oo is an imperative concept – Christoph Feb 16 at 17:44
show 24 more comments
vote up 0 vote down

A lot of different concepts contribute to the concept of Object Oriented Programming. Wikipedia lists mosts of them.

I would characterize the essence of OOP by the use of Objects with Behaviours.

Wikipedia characterizes Objects by the following three properties:

  1. Identity: the property of an object that distinguishes it from other objects
  2. State: describes the data stored in the object
  3. Behavior: describes the methods in the object's interface by which the object can be used

A lot of Object Oriented Language have a concept of classes, but actually, there are also Prototype-based languages like JavaScript.

Functional languages may also use classes (e.g. Type Classes in Haskell). But just because they have classes doesn't mean that they are object oriented or allow object oriented programming. To stay with the example of Haskell: You don't even have Objects! There is no such concept as "Identity"! All you can do is composing pure functions!

Just because someone's using a term named "classes", it doesn't mean they're doing object orientated programming!

OOP is about stateful Objects with behaviour. Though the behaviour of objects don't have to modify that object because new objects can be created instead, you'd loose the need of Objects completely. You wouldn't need Identities anymore, because it doesn't matter if the changes to one object are reflected by other references to the same object because there wouldn't be any changes anymore. All you need are Values (without identity) and Modules and/or Classes for data hiding and encapsulation.

So Yes, imperative programming is inherent to OOP.

link|flag
Thomas, interesting statements, Considering that Alan Kay doesn't consider C++ and its derivatives (Java, C#) to be in the realm of OO programming languages. and he is the guy who coined the term. – DouglasH Aug 29 at 10:05
Alan Kay doesn't consider C++ et al to be in the realm of OOP, because the way the "Behavior"-Part is implemented in them. It's that "sending messages to communicate" part, that's a bit missing in these languages... – Thomas Danecker Aug 30 at 8:42
vote up -2 vote down

Some people disagree on OO being an imperative concept, so here's my reasoning.

Object-orientation essentials:

  1. objects hold state (ie references to other objects)
  2. objects receive (and process) messages
  3. processing a message may result in
    • messages beeing sent to the object itself or other objects
    • a change in the object's state

This means oo-programming requires mutable state held by the object(!). If you simulate state change by creating a series of objects, you're breaking these invariants, simple as that.

Flamebait: If you disagree with this definition of object-orientation, take it up with Alan Kay.

link|flag
vote up 2 vote down

To look at it from a different perspective, most people like to think imperatively (rather than in recursions or RPN). From this follows that most languages will be imperative.

Of course, many problems are much more simple to express (or solve) with a non-imperative approach (for example user interfaces) but most people don't really feel comfortable with this approach. Some don't like to leave the beaten path while others really have trouble to do the mental change necessary to approach problems from this side (thinking in method calls and recursion instead of variables and loops).

link|flag
Yes that I can understand, actually getting into understanding some of the Functional language concepts is interesting. Since my background was Fortran, Pascal and C. But to be Honest Functional makes more sense to me from the outside looking in. – DouglasH Feb 16 at 16:04
As I said: For some problems, functional programming is much more straightforward, especially when used in an environment where you can mix functional+imperative. Functional-only environments usually ask for a new way of thinking which is hard. – Aaron Digulla Feb 17 at 8:51
vote up 1 vote down

Yes. Object-oriented is a style of programming which permits the programmer to express a program as a set of stateful objects acting and interacting (typically, by means of message-passing in dynamically-typed languages and method-invoking in statically-typed languages), and doing so in a particular sequence.

State, action and sequence are concepts from procedural programming and are not present in nonmonadic functional programming (monads are used to implement state, action and sequence in the pure functional languages Haskell, which would otherwise not have these concepts).

link|flag
+1: objects have mutable state, an imperative concept – Christoph Feb 16 at 16:17
Objects can have mutable state - but equally you can come up with immutable objects too. I'm writing a benchmark framework which I hope will have no mutable state - but it's still OO. – Jon Skeet Feb 16 at 16:26
Ok I choose Functional as Just an example. Logic programming can use OO paradigm also. But What would the OO paradigm have looked like if it was built upon the Functional languages first?? Or Logic languages? – DouglasH Feb 16 at 16:26
@Jon: encapsulation limits state change to object-internal properties; at least some objects must have mutable state – Christoph Feb 16 at 17:50
@Jon You can certainly create a hybrid object-functional framework. But the whole idea behind object-oriented is to simplify complex stateful, sequential programs performing actions. – Justice Feb 16 at 18:03
vote up 4 vote down

Most OO languages are imperative, but you can use them in a somewhat functional style. Some functional languages sit atop an OO framework (F# on .NET being the most obvious example) trading off some "purity" in order to get a massive framework to use where appropriate.

I think there's a lot of room for "mainly OO" languages to do more to help programming in a functional style - better support for immutability being the most obvious feature, possibly followed by better type inference. (At least when talking about C#, which is probably the most significant example of a traditional language trying to get a foot in the functional door.)

link|flag
can add better support for recursion to that list also for C#. – DouglasH Feb 16 at 16:01

Your Answer

Get an OpenID
or

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