up vote 0 down vote favorite
7
share [g+] share [fb]

I have heard of many and studied several, are there others that I've missed? I have studied:

I'm looking for 'whole' paradigms for study, such as the above, that tend to fit a boundary around how you express a program - Aspect Oriented Programming doesn't fit into this description to me since it is an add-on to existing languages, rather than typically embodied by a language.

What other paradigms are there and what is compelling about them?

link|improve this question

50% accept rate
does this question make sense ? NO - its just copy-paste from wikipedia . – n00ki3 Nov 21 '09 at 3:11
feedback

closed as not a real question by Mark, jpalecek, dmckee, Michael Petrotta, cHao Nov 13 '11 at 15:42

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ.

9 Answers

There is quite a comprehensive list on wikipedia

link|improve this answer
feedback

Aspect-Oriented Programming is most definitely a programing paradigm. It is actually used all the time without people even realizing it. It can be done in any language kind of like the way you can use object-oriented programming in a language like C that doesn't have any direct support for it.

Most people only think of AspectJ when they hear about AOP, but that's just one popular language/implementation. AspectJ feels like an add-on because it simply adds more AOP features on top of an otherwise existing language. That says nothing for the paradigm itself.

AOP is all about separation of concerns. Encapsulation, modularization, and the ability to split blocks of code into functions -- some of the most fundamental concepts in programming -- are all a part of aspect-oriented programming. To do true AOP though, you go even further, and separate concerns at the statement level. Pointcuts are yet another feature designed to separate concerns when certain ones necessarily cut across -- or crosscut -- other abstractions.

link|improve this answer
1  
NOTE: a paradigm, but not mutually exclusive with the others. OO programming is often used WITH AOP. ;D – CrazyJugglerDrummer Nov 24 '09 at 1:01
feedback

Generative programming

EDIT: look into ontology, OpenCyc

link|improve this answer
feedback

There's process-oriented programming, don't know if that's "whole" enough for you.

link|improve this answer
I explicitly mentioned AOP as not fitting the question - what is important about it? I just see it as an alternative method of DI - are there AOP languages? Or just extensions to existing languages? – Kyle Burton Oct 10 '08 at 21:21
Sorry, I was half-asleep when I wrote the answer. Updated now. – moritz Oct 10 '08 at 21:24
feedback

Do stack-based languages, such as Forth and Postscript, count as a paradigm? Certainly programming in them is like no other language. Technically I suppose they count as Procedural, but their structure is completely different.

link|improve this answer
feedback

quick guess: trivial, such as non-turing complete languages.

link|improve this answer
feedback

Event driven programming

http://en.wikipedia.org/wiki/Event-driven_programming

link|improve this answer
feedback

Not sure if you can call them paradigms but:

  • real time programming languages

  • assembler languages ;-)

link|improve this answer
feedback

Some would add agent-oriented. Not that I would agree.

link|improve this answer
feedback

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