The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
162 views

Can Prototypical OOP Be Considered a Paradigm In C++?

Good day, considering the following code, could one classify prototypical OOP to be a paradigm in C++? #include <iostream> template< class... Bases > struct TestClass : public ...
3
votes
2answers
110 views

What properties must a language have to support recursion?

I was studying about recursion and I came across this question: FORTRAN implementations do not permit recursion because a. they use static allocation for variables b. they use dynamic allocation ...
0
votes
1answer
40 views

Main construct of logic programming paradigm

We say that: in procedural paradigm the main construct is the 'procedure'; in OOP paradigm the main construct is the 'object'; in functional paradigm the main construct is the 'function'; but ...
1
vote
3answers
319 views

Two (or more) DMLs inside one bulk collect operation loop

I have problem with BULK COLLECT logic on Oracle 11g. The original logic in stored procedure is: PROCEDURE FOO(IN_FOO IN VARCHAR2) IS BEGIN FOR CUR IN (SELECT COL1,COL2,COL3 FROM SOME_TABLE) LOOP ...
1
vote
0answers
47 views

Which pattern to use in Javascript to enable user overrides/customization of a core framework?

We've developed a sort of mobile application kit which was initially designed to run without any user code. Its part of a mobile app studio and now we'd like to enable "user overrides" through ...
5
votes
2answers
431 views

C++ Techniques: Type-Erasure vs. Pure Polymorphism

What are the advantages/disadvantages of the two techniques in comparison ? And more importantly: Why and when should one be used over the other ? Is it just a matter of personal taste/preference ? ...
6
votes
6answers
640 views

Which programming paradigm to use?

I'm a high school student, and have a bit of programming experience before. Now I want to dive into the world of Artificial Intelligence and Robotics (Making AI programs and games and making robots). ...
2
votes
0answers
125 views

what paradigm does assembly use? [closed]

What programming paradigm does assembly language use? Machine code? Binary code? have no paradigms?
22
votes
2answers
875 views

What does “Pure” mean, in the context of programming languages and paradigms?

In other words, what makes a language pure? For example, Smalltalk is considered to be a purely object-oriented language. Haskell and Lisp are arguably known to be purely functional languages. When ...
0
votes
2answers
75 views

What type of programming paradigm is this?

In some languages you can do a lot very easily. For example: if I want to get a value of a XML document, I can easily write this line of code: result = XML.GetValue("root/element/element"); What ...
2
votes
2answers
143 views

Survey of Software Development Practices

I'm looking for some kind of annual survey or census that shows changes in software development practices and/or the software development industry over time. What types of project management are ...
1
vote
0answers
77 views

Is it better to first learn one language thoroughly or survey widely before specializing? [closed]

I decided a few months ago to get seriously into development as a profession, and am at a bit of a cross-roads. I'm wondering whether to begin focusing my (somewhat limited) time and energy on a ...
1
vote
7answers
130 views

return multiple values in python without breaking previous code

I had a version 1 of a function like: def f(a,b,c): #Some processing return some_result Later, I upgraded it to version 2. def f(a,b,c): #Some processing #Some more processing ...
0
votes
1answer
70 views

Is there any elegant way to prevent a class from holding private data?

In a recent code refactor, I'm fulfilling an idea that isolates data handling from data itself. It's something like Chain-of-responsibility - processing units providing the ability to handle the data ...
0
votes
3answers
86 views

How is inlining more efficeny than recursive definition?

My Programming Paradigms textbook, Essential of Programming Languages (3rd ed), Chapter 1 has an exercise: Exercise 1.12 Eliminate the one call to subst-in-s-exp in subst by replacing it by ...
0
votes
3answers
90 views

One datasource for project

I'm using wizard to add tables to my project to work with them. Is having just one datasource for project better way? At the moment there is only 5 tables. POST EDIT It's so cumbersome and I'm ...
1
vote
2answers
95 views

Language for learning several paradigms

Is there a programming language that can be used as a bridge for learning several programming paradigms? I am introduced to the Oz programming language but I think there are several more languages ...
0
votes
1answer
194 views

How to choose a Programming Paradigm to work with? [closed]

There are many questions in SO about choosing a programming language. To me, I think, the choice becomes easier if I can decide which paradigm/model I am going to work with. But, my question is, When ...
1
vote
2answers
192 views

Under which Programming Paradigm Lua can be used?

I've done some research about Lua programming but I'm still confused about under which paradigm it can work. In some walkthroughs, I've found that Lua is not made for Object-Oriented Programming. ...
7
votes
4answers
334 views

How to mix apparently incompatible paradigms: OOP and FP? [closed]

Reading back some of my Scala code, I noticed that it is either functional or object oriented. Indeed, I have no idea on how to conciliate the no-side effects rule implied by immutable types and pure ...
0
votes
0answers
223 views

Programming paradigms: Non Structured, Functional, POO [closed]

Than you for reading this. I read a lot about these 3 programming techniques and understand their specificities. But it's still very theoretical to me. Is there someone who could give me a practical ...
5
votes
3answers
739 views

Can you represent the same example using Procedural, Functional, Logic and OO programming Languages?

Can anyone please provide me with an example that can help me to understand Procedural, functional, Logic and Object Oriented programming models side by side by using nearly same example-problem. ...
1
vote
1answer
56 views

Seperating JS & HTML in Wordpress

I recently read the discussion What's the best way to separate PHP Code and HTML? I am facing a similar dilemma. Currently working on a wordpress website which has a LOT of sliders, animated ...
-2
votes
2answers
99 views

Making a programming paradigm [closed]

What are the steps of making a programming paradigm? If you like, please give some light illustration on the procedural programming paradigm. Also, I'd love to be referred to some ...
25
votes
3answers
5k views

Struggling with using pure functional programming to solve an everyday problem

I saw this post in hacker news today. I am struggling with the same problems of understanding how pure functional programming will help me abstract a real world problem. I made the switch from ...
4
votes
2answers
489 views

What is the programming paradigm of R?

What is the programming paradigm of R (R as in GNU S)? I believe myself familiar with programming languages of different conceptual paradigms (have programmend in C++, Java, Prolog and some other ...
1
vote
2answers
279 views

Learning Programming Languages [closed]

I have been programming in Java, PHP, Python for a while. But my knowledge in programming languages is not that good. I have been reading a few blogs on functional programming(FP) these days and the ...
7
votes
1answer
851 views

The difference between Reactive and Functional-Reactive programming

I have been doing some research into reactive programming recently and I'm finding it hard to find a good description of the difference between Reactive and Functional-Reactive. Is it simply that ...
15
votes
5answers
2k views

Why is Clojure dynamically typed?

one thing I like very much is reading about different programming languages. Currently I'm learning Scala but that doesn't mean I'm not interested in Groovy, Clojure, Python, and many others. All ...
3
votes
5answers
737 views

What is the usage of Model in MVC? Is it actually useful?

I'm new in this, so bear with me. I've been using one MVC framework in a couple of projects lately, and after a while, I'm disillusioned in the perceived usefulness of the 'Model' in MVC. I get the ...
6
votes
2answers
408 views

Should object-oriented principles be applied in procedural languages?

I know that it's possible in principle to turn even procedural languages such as C or MATLAB into object-oriented ones. This question has been fairly well discussed here and here. What I found ...
0
votes
3answers
149 views

What tools/programming languages do people use that support TDD?

I want to get an idea of What tools/programming languages people are using that supports Test Driven Development? Many Thanks, J
13
votes
4answers
680 views

Efficacy of sticking to just the functional paradigm in Scala

I recently bought Programming Scala, and have been reading through it. The language definitely isn't what I expected! Specifically, it seems to implement just about every programming language idea I'm ...
0
votes
1answer
1k views

What are the most beautiful programming languages? (In your opinion) [closed]

YES. This question appears subjective. And it's on purpose. I'd like to know the opinion of other programmers. What they consider a programming language "Beautiful" and why? My list: Smalltalk ...
0
votes
1answer
61 views

Data structure to keep track of active connections

When I want to keep track of active connections, is it better to save them into linked list or directly to some array where index will represent ID of the connection? I want to prevent possible race ...
4
votes
3answers
2k views

What is Data Oriented programming?

Can any one explain to me what is Data Oriented programming? Is Data oriented programming and functional programming the same? How is Data Oriented programming different from Object Oriented ...
5
votes
4answers
279 views

What is the canonical way of handling different types in Python?

I have a function where I need to generate different output strings for another program I invoke, depending on which type it wants. Basically, the called program needs a command line argument telling ...
6
votes
2answers
1k views

Programming language categories [closed]

What programming language categories are there? I know about object-oriented languages, functional languages, procedural languages.... what other 'paradigms' are there? What are the best languages in ...
1
vote
2answers
85 views

Is there a programming language oriented to description of interaction between agents?

I want to create different kinds of processes in which agents interact with each other. I want to describe (define, formalize) processes of interaction between agents using a special language. In ...
2
votes
2answers
212 views

Good examples of MVC?

Can anybody point to/give a very very correct example for the Model-View-Controller paradigm? I mean something really simple (like an inches to cm converter) implemented in some easy-to-understand ...
69
votes
9answers
4k views

How do functional programming languages work?

I was just reading this excellent post, and got some better understanding of what exactly object oriented programming is, how Java implements it in one extreme manner, and how functional programming ...
2
votes
4answers
89 views

How to automatically run in the background?

I'm not sure that it's not implemented yet, I hope that it is. But I know that in .Net programmers should manually run time-consuming task in the background thread. So every time we handle some UI ...
4
votes
3answers
2k views

Differences & Similarities Between Programming Paradigms

I've been working as a developer for the past 4 years, with the 4 years previous to that studying software development in college. In my 4 years in the industry I've done some work in VB6 (which was a ...
5
votes
8answers
7k views

What is the difference between a Char Array and a String?

Spending my time on high level languages it suddenly occurred to me that I did not know the difference between a Char Array and a String. I think they are the same thing but not sure. Is there a ...
6
votes
1answer
339 views

How can Domain driven design be combined with aspect oriented programming?

I'm doing research and one point I want to cover is "What is the relationship between Domain-driven Design and Aspect oriented programming?" I know that a main principle in DDD is separation of ...
13
votes
7answers
2k views

Tools and environments supporting Domain Driven Design (DDD)

I'm doing a kind of research on the topic "Domain Driven Design". My question is what tools (or maybe environments) do you use, that support this paradigm? I know that I can google it, but I wonder ...
4
votes
1answer
167 views

New to ASP.NET MVC - Will I have to relearn security?

I'm planning work on a new project and am now tempted to use ASP.NET MVC. My project plans to use JQuery and AJAX (although non-JS clients will also be supported). Coming from a standard ASP.NET ...
93
votes
5answers
23k views

Functional programming vs Object Oriented programming [closed]

I'm an Object Oriented programmer looking forward to learning a functional language. My questions are: When do you choose functional programming over object oriented ? What are the typical problem ...
3
votes
1answer
94 views

datatype programming

I know of "imperative" and "functional" programming but there was little I could find on "datatype" programming. Is there such a thing and how is it related to the other paradigms?
10
votes
6answers
317 views

Can you have too much of “dynamic” in dynamic languages?

In last few months I have been making a transition from Java to Groovy and I can appreciate many of the benefits it brings: less code, closures, builders, MOP that in the end makes framework like ...

1 2