vote up 4 vote down star
4

Today we can look back on the evolution of computer science and see structural programming, functional programming, and finally object-oriented programming. Additionally, things like meta-programming (reflective programming) and combining approaches into a single language (e.g. LINQ) are current.

Another trend is template-meta-programming (though implemented in C++ long ago) and the advent of dynamic languages (ruby, python).

What do you think:

  • Will OOP be replaced by some new programming paradigm?
  • What problems does OOP have that new paradigms will need to address?
flag
1  
Huh? You seriously place OOP after FP? That would imply that OOP has built upon, or learned from, FP. Or that OOP is the best paradigm currently available. – jalf Oct 14 at 18:48
1  
it is that i think fp was there before oop. not in an evolutional sense. If I am down the wrong road here, please correct. – Johannes Rudolph Oct 14 at 19:12

7 Answers

vote up 4 vote down check

OOP is not going to be replaced, but will be built upon and used as the basis for the next evolution in programming.

link|flag
vote up 1 vote down

Aspect Oriented Programming (AOP) is one relatively new paradigm that comes to mind which is already seeing significant use in the field through various inversion of control (IoC) containers and the dependency injection pattern. As Chris Ballance said, it builds on the existing OOP way of doing things.

link|flag
Advocates have been banging on about AOP for 5 years now and it's not gaining any traction. It's another one of those clever ideas that doesn't work in the real world. – Martin Spamer Oct 15 at 10:04
@Martin Spamer - We've used it in production systems I've worked on going back to 2006--and that's just on the .NET side. The techniques are use to a larger degree than you assert. – Scott A. Lawrence Oct 15 at 19:36
vote up 2 vote down

But structural and functional programming are still here; OOP didn't replace them, it just added another tool to the toolbox.

Take AOP for example; it's definitely post-OOP, but fits on top of or beside what's come before.

link|flag
vote up 4 vote down

It appears that we are not moving into wild new ideas totally foreign to our previous experiences with software engineering, but rather are starting to integrate ideas from Functional (and possibly structural though no immediate things come to mind) into out OOP Paradigm to make more readable, and ultimately more extensible designs.

link|flag
vote up 4 vote down

I think we will see continued proliferation of Domain Specific Languages and declarative languages tied to specific applications.

link|flag
We already have this. It seem to be new. It seems like business as usual. – S.Lott Oct 14 at 18:50
I think this also points in the direction of reusable domain object-models as proposed in (Fowler) Analysis Patterns. DSL does not seem like business as usual to me. – Johannes Rudolph Oct 22 at 15:17
vote up 1 vote down

I could see a framework with a massively unified object model being one of the next big leaps.

Allowing one object to interact with any other object using natural language verbs, essentially giving one the benefits of OO, dynamic languages, and scripting languages.

I'd see the framework having some logic behind how, and in what order verbs are applied, and having verb-to-verb dependencies. For example, say that you had a "car" object, if you wanted to "drive" the "car" there would be a dependency that the "car" would be started, so "start" would get called automatically.

Programmers could then write

A Car has a steering wheel, 4 wheels, a number of doors, and a motor.

The framework would then infer that a Car has 4 tires, some structure to hold a number of doors, and since the car has a motor that it has some form of locomotion, and on/off state, etc.

Obviously, this idea is very poorly developed here, but I could see something like that lowering the barrier of entry to programming allowing a more diverse set of ideas to come through. The language/framework/whatever would need to have power "under the hood" to be really effective though.

link|flag
vote up 0 vote down

I'd say the general trend is for object-oriented languages to borrow more from functional languages with a better approach to concurrency and less emphasis on type safety.

Expect to see more from multi-methods; these are methods that are only called when the parameters of certain types are in a certain form i.e. a method isn't a member of a single class but a member of composite of object. I say objects and not classes because I hope we'll be doing prototype-based OO instead of class-based OO in the future too. Also I think there'll be less data hiding (private/protected).

Will OOP be replaced by some new programming paradigm?

OO is — or at least, it should be — about breaking down code into conceptual units that people can understand. That's always going to be valuable. How much we value it is the subject of fashion: there is more to programming than modeling code into something nice for humans. But, I think as computers get faster we'll start to value that even more. Even if OO has taken a bit of a hit recently because Java is starting to decline.

What problems does OOP have that new paradigms will need to address?

If you define OO as I did OO doesn't really have any problem other than maybe being less performant. It's how OO is done.

link|flag

Your Answer

Get an OpenID
or

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