What are all the Programming Paradigms? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T18:56:10Z http://stackoverflow.com/feeds/question/193053 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/193053/what-are-all-the-programming-paradigms 1 What are all the Programming Paradigms? Kyle Burton 2008-10-10T21:15:25Z 2009-11-21T03:07:57Z <p>I have heard of many and studied several, are there others that I've missed? I have studied:</p> <ul> <li><a href="http://en.wikipedia.org/wiki/Procedural_programming" rel="nofollow">Procedural</a></li> <li><a href="http://en.wikipedia.org/wiki/Object_oriented_programming" rel="nofollow">Object Oriented</a></li> <li><a href="http://en.wikipedia.org/wiki/Functional_programming" rel="nofollow">Functional</a></li> <li><a href="http://en.wikipedia.org/wiki/Dataflow_programming" rel="nofollow">DataFlow</a></li> <li><a href="http://en.wikipedia.org/wiki/Declarative_programming" rel="nofollow">Declarative</a></li> <li><a href="http://en.wikipedia.org/wiki/Logic_programming" rel="nofollow">Logic</a></li> <li><a href="http://en.wikipedia.org/wiki/Total_functional_programming" rel="nofollow">Total Functional Programming</a></li> </ul> <p>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.</p> <p>What other paradigms are there and what is compelling about them?</p> http://stackoverflow.com/questions/193053/what-are-all-the-programming-paradigms/193061#193061 2 Answer by eulerfx for What are all the Programming Paradigms? eulerfx 2008-10-10T21:18:29Z 2008-10-10T21:18:29Z <p>Generative programming</p> <p>EDIT: look into ontology, OpenCyc</p> http://stackoverflow.com/questions/193053/what-are-all-the-programming-paradigms/193062#193062 0 Answer by Andreas Petersson for What are all the Programming Paradigms? Andreas Petersson 2008-10-10T21:18:44Z 2008-10-10T21:18:44Z <p>quick guess: <a href="http://en.wikipedia.org/wiki/Machine_that_always_halts" rel="nofollow">trivial</a>, such as non-turing complete languages.</p> http://stackoverflow.com/questions/193053/what-are-all-the-programming-paradigms/193066#193066 1 Answer by moritz for What are all the Programming Paradigms? moritz 2008-10-10T21:20:20Z 2008-10-10T21:20:20Z <p>There's <a href="http://en.wikipedia.org/wiki/Process-oriented_programming" rel="nofollow">process-oriented programming</a>, don't know if that's "whole" enough for you.</p> http://stackoverflow.com/questions/193053/what-are-all-the-programming-paradigms/193085#193085 2 Answer by Marcus Downing for What are all the Programming Paradigms? Marcus Downing 2008-10-10T21:28:58Z 2008-10-10T21:28:58Z <p>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.</p> http://stackoverflow.com/questions/193053/what-are-all-the-programming-paradigms/193105#193105 0 Answer by Gamecat for What are all the Programming Paradigms? Gamecat 2008-10-10T21:35:03Z 2008-10-10T21:35:03Z <p>Not sure if you can call them paradigms but:</p> <ul> <li><p>real time programming languages</p></li> <li><p>assembler languages ;-)</p></li> </ul> http://stackoverflow.com/questions/193053/what-are-all-the-programming-paradigms/199684#199684 2 Answer by Jonathan Tran for What are all the Programming Paradigms? Jonathan Tran 2008-10-14T01:13:23Z 2008-10-14T01:31:36Z <p><strong>Aspect-Oriented Programming</strong> 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.</p> <p>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 <em>more</em> AOP features on top of an otherwise existing language. That says nothing for the paradigm itself.</p> <p>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.</p> http://stackoverflow.com/questions/193053/what-are-all-the-programming-paradigms/254434#254434 5 Answer by toolkit for What are all the Programming Paradigms? toolkit 2008-10-31T18:23:33Z 2008-10-31T18:23:33Z <p>There is quite a comprehensive list on <a href="http://en.wikipedia.org/wiki/Programming_paradigm#Hierarchy_of_programming_paradigms" rel="nofollow">wikipedia</a></p> http://stackoverflow.com/questions/193053/what-are-all-the-programming-paradigms/1774372#1774372 0 Answer by CesarGon for What are all the Programming Paradigms? CesarGon 2009-11-21T03:07:57Z 2009-11-21T03:07:57Z <p>Some would add agent-oriented. Not that I would agree.</p>