vote up 1 vote down star
4

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?

flag

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

8 Answers

vote up 5 vote down

There is quite a comprehensive list on wikipedia

link|flag
vote up 2 vote down

Generative programming

EDIT: look into ontology, OpenCyc

link|flag
vote up 2 vote down

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|flag
vote up 2 vote down

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|flag
NOTE: a paradigm, but not mutually exclusive with the others. OO programming is often used WITH AOP. ;D – CrazyJugglerDrummer Nov 24 at 1:01
vote up 1 vote down

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

link|flag
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
vote up 0 vote down

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

link|flag
vote up 0 vote down

Not sure if you can call them paradigms but:

  • real time programming languages

  • assembler languages ;-)

link|flag
vote up 0 vote down

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

link|flag

Your Answer

Get an OpenID
or

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