What are all the Programming Paradigms? - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T18:56:10Zhttp://stackoverflow.com/feeds/question/193053http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/193053/what-are-all-the-programming-paradigms1What are all the Programming Paradigms?Kyle Burton2008-10-10T21:15:25Z2009-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#1930612Answer by eulerfx for What are all the Programming Paradigms?eulerfx2008-10-10T21:18:29Z2008-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#1930620Answer by Andreas Petersson for What are all the Programming Paradigms?Andreas Petersson2008-10-10T21:18:44Z2008-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#1930661Answer by moritz for What are all the Programming Paradigms?moritz2008-10-10T21:20:20Z2008-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#1930852Answer by Marcus Downing for What are all the Programming Paradigms?Marcus Downing2008-10-10T21:28:58Z2008-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#1931050Answer by Gamecat for What are all the Programming Paradigms?Gamecat2008-10-10T21:35:03Z2008-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#1996842Answer by Jonathan Tran for What are all the Programming Paradigms?Jonathan Tran2008-10-14T01:13:23Z2008-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#2544345Answer by toolkit for What are all the Programming Paradigms?toolkit2008-10-31T18:23:33Z2008-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#17743720Answer by CesarGon for What are all the Programming Paradigms?CesarGon2009-11-21T03:07:57Z2009-11-21T03:07:57Z<p>Some would add agent-oriented. Not that I would agree.</p>