Tagged Questions
The procedural-programming tag has no wiki summary.
39
votes
13answers
11k views
What is the difference between procedural programming and functional programming?
I've read the Wikipedia articles for both procedural programming and functional programming, but I'm still slightly confused. Could someone boil it down to the core?
20
votes
21answers
7k views
Does procedural programming have any advantages over OOP?
[Edit:] Earlier I asked this as a perhaps poorly-framed question about when to use OOP versus when to use procedural programming - some responses implied I was asking for help understanding OOP. On ...
19
votes
3answers
5k views
Difference between Declarative and Procedural Programming?
During one of my interviews, they asked me the difference between those two (Declarative Programming and Procedural Programming) programming type and the problem is I couldn't give right answer they ...
19
votes
15answers
9k views
What's the difference between a procedural program and an object oriented program?
I'm fairly new to programming but I've been reading some interesting discussions on StackOverflow about various programming approaches. I'm still not 100% clear on what the difference is between ...
15
votes
10answers
1k views
Struggling with C coming from Object Oriented land?
When I am presented with programming problems, I naturally start breaking them up into logical objects in my head. Who has what responsibility, who owns what, who derives from what, etc.
I am ...
14
votes
20answers
972 views
How do i get out of the habit of procedural programming and into object oriented programming?
I'm hoping to get some tips to kinda help me break out of what i consider after all these years a bad habit of procedural programming. Every time i attempt to do a project in OOP i end up eventually ...
14
votes
4answers
3k views
simple explanation PHP OOP vs Procedural?
I would like to learn PHP and want to get an Idea about OOP and Procedural. I read some other blogs and tutorials about OOP vs Procedural but I still can't understand the approach.
OOP vs Procedural
...
14
votes
11answers
1k views
Are side effects a good thing?
I feel the term rather pejorative. Hence, I am flabbergasted by the two sentences in Wikipedia:
Imperative programming is known for
employing side effects to make
programs function. Functional
...
10
votes
9answers
2k views
Development Cost of Procedural Programming vs. OOP?
I come from a fairly strong OO background, the benefits of OOD & OOP are second nature to me, but recently I've found myself in a development shop tied to a procedural programming habits. The ...
8
votes
5answers
262 views
Dependency Injection for Procedural Programming
Suppose I've decided to write a large application in C, or any other procedural programming language. It has functions with call-dependencies that look like this:
A
|
+-------------+
| |
...
8
votes
6answers
500 views
truly understanding the difference between procedural and functional
So I'm really having a hard time understanding the difference between procedural and functional programming paradigms.
Here are the first two paragraphs from the Wikipedia entry on functional ...
7
votes
3answers
113 views
API — CFC vs. cfinclude
So the company I work for has quite an unorganized approach when it comes to our site. All of our scripts are procedural with cfincludes thrown within. I've been wanting to organize this into an ...
7
votes
6answers
1k views
Can someone give me examples of functional programming vs imperative/procedural programming?
Are procedural and imperative the same thing?
6
votes
2answers
293 views
which metric(s) show the difference between object-oriented and procedural code
Which metric(s) could help to indicate that i have procedural code instead of object-oriented code? I would like to have a set of simple metrics, which indicate with a high probability, that the ...
6
votes
11answers
428 views
OOP vs PP for algorithms
Which paradigm is better for design and analysis of algorithms?
Which is faster? Because I have a subject called Design and Analysis of Algorithms in university and have a time limit for programs. Is ...
6
votes
5answers
256 views
Transferable skills (to SQL)
In your experience, how long does it take for a professional procedural coder to become a professional SQL coder? And what's the best way to make the transition? (Disregarding database design skills).
...
5
votes
3answers
135 views
advantages of stateful programming? [closed]
i was wondering about the benefits of stateless programming, and found someone who shared my question:
Advantages of stateless programming?
as i read through the answers though, it made me curious ...
5
votes
9answers
319 views
Is my code too procedural?
Someone recently took a look of my code and commented that it was too procedural. To be clear, it was not much of the code they saw - just a section which clearly outlines the logical steps taken in ...
5
votes
3answers
178 views
OOP vs procedural in run-time
I have very simple question I cant find answer anywhere on the internet.
So, my question is, in procedural programming, code is in code section, which goes into Read Only memory area. Variables are ...
4
votes
4answers
1k views
What's the difference between functional, structured and procedural programming?
I have read some articles on all subjects, but I don't quite get the differences.
3
votes
0answers
278 views
Is there a reason for which Donald Knuth choose procedural programming instead of functional programming? [closed]
Donald Knuth's Art of Computer Programming Series uses his own procedural assembly languaged called MIX. Now, the question becomes: should Knuth have used a functional language to describe his ...
3
votes
7answers
316 views
When to switch from procedural to OOP?
In most discussions of OOP it's said that the advantage is re-usability.. You put in some extra work to define your classes, and it saves you time later in being able to create many instances and ...
3
votes
4answers
415 views
Speed of finite state machines - OO vs procedural
Hey all,
I am designing a program that will accept from input a series of tokens and feed them to a finite state machine which I have designed. I have designed a test finite state machine in ...
3
votes
4answers
231 views
Is ORM a problem specific to object oriented programming?
Object-Relational Mapping, ORM is a problem that has to be solved in all applications that is implemented in an object oriented programming language and use a relational database.
But isn't the ...
3
votes
3answers
592 views
How to document procedural programming?
In college I learned how to use UML to document OO applications. In the real world I've been tasked with documenting an old procedural program, essentially re-creating the design specification ...
3
votes
2answers
141 views
Is it ever justified to write a fairly large, database-centric PHP app procedurally and without MVC?
Sorry for the rather subjective question, but I was hoping to get an opinion from someone more experienced than myself on this.
I'm pretty far into an ajax-driven PHP application and, while I have ...
3
votes
3answers
708 views
Information on L-Systems
Hey Stack Overflow folks,
I am about to start a project for university to build a procedural city for a pre existing project.
I was wondering if any of you have had any experience coding L-Systems ...
2
votes
2answers
57 views
How to port a Procedural project into an OO project
I have a small PHP project (about 3000 lines) and I need to make a BASIC UML model of it, starting with cases of use diagram, sequence diagram and states diagram, probably classes diagram, and maybe ...
2
votes
1answer
98 views
procedural code, vs oopy code and performance
I've written a backend app for use with a iOS App. When I started the project, I didnt know OOP at all.
Now half the scripts are classes and I am using a mvc pattern and classes. It sure is easier ...
2
votes
3answers
297 views
A PHP design pattern that is not OO, PHP pattern best suited to this situation
We were given a php inventory program. We are then supposed to say if a design pattern will make the program better or if it will just make the program more complicated.
The program is structured ...
2
votes
2answers
320 views
Design Patterns and Encapsulation for Procedural Programming?
I'm working on a fairly large PHP project written in a procedural style (it was written before PHP 5), and I can't help but feel that some of the things I'm doing are a little "hackish." A ...
2
votes
5answers
346 views
Class usage in Python
I write a lot of scripts in Python to analyze and plot experimental data as well as write simple simulations to test how theories fit the data. The scripts tend to be very procedural; calculate some ...
2
votes
5answers
162 views
How do I handle combinations of behaviours?
I am considering the problem of validating real numbers of various formats, because this is very similar to a problem I am facing in design.
Real numbers may come in different combinations of ...
2
votes
10answers
819 views
Looking for example program written in different languages
As a way to understand the differences between OOP and Procedural languages I was looking for a sample program written in C and C++ or C# or Java. I just want to see the different approaches to the ...
2
votes
6answers
1k views
Do the concepts in Accelerated C++ Practical Programming by Example still hold up today?
I was recommeded a book called:
Accelerated C++ Practical Programming by Example
by Andrew Koenig and Barbara E. Moo
Addison-Wesley, 2000
ISBN 0-201-70353-X
The basis of this book is that Object ...
1
vote
0answers
50 views
Object-Oriented vs Function-Oriented Organization [closed]
I have a moderate degree of experience with both objected-oriented and procedural programming (as well as with functional programming). I don't have much experience with systems large enough to make ...
1
vote
3answers
46 views
Handling errors when refactoring procedural code
I was handed some C code that basically consists of a big main() function. I am now trying to unfold the method into smaller functions, to make clearer the code's intent. I am having some trouble, ...
1
vote
2answers
200 views
Unit-testing in Procedural or Functional Programming Languages
I have asked a related question, but I did not get a satisfactory answer. So, perhaps I should ask it a different way.
How do large-scale C projects, like Perl or Ruby or even the Linux kernel, ...
1
vote
5answers
201 views
What is Method, Property and Function?
Yeah, I'm struggling with that. I cannot distinguish among them because every explanation I read is so unclear and philosophical enough. Can someone clear up these definitions for me ? Thanks guys.
...
1
vote
1answer
236 views
Problems mapping cubemaps to a sphere
I'm currently trying to create a procedural planet generating tool. I have started off by mapping a cube to a sphere like so:
Next I'm using Libnoise to a heightmap cube using 3D Perlian noise. I ...
1
vote
2answers
59 views
oo javascript with properties from server, methods from cache, best practice?
I'm converting procedural JS to OO and would appreciate any help.
In a nutshell, what I have is a html-page containing:
<script type="text/javascript">
var serverTime='11:32:20'; //time ...
1
vote
2answers
466 views
In non-procedural languages, what specifies how things are to be done?
If you compare C vs SQL, this is the argument:
In contrast to procedural languages
such as C, which describe how things
should be done, SQL is nonprocedural
and describes what should be ...
1
vote
1answer
60 views
Unrolling procedural code into SQL
The act of transforming procedural code into SQL has been of interest to me lately. I know that not absolutely everything is expressable in a turing complete procedural language.
What if you have a ...
1
vote
6answers
746 views
Do high-level programming languages tend to be object-oriented while low-level languages are procedurally oriented?
I'm just getting a bit confused about all the language types out there. What's the difference - if there is one - between the high level / low level languages distinction compared to the ...
1
vote
3answers
137 views
Should I design my software according to a paradigm or according to the tools the language supplies?
I will explain the question by example:
In zend framework, when you want to add a functionality to the view class, you can use what is called a Helper class.
A helper class is a class that has one ...
0
votes
3answers
102 views
Is OOP necessary in PHP sites, can't I just apply its concept to procedural code… cake and eat it?
I know theres countless questions about the difference between OOP and procedural, when to use either and whether the benefits outweigh the extra overhead, learning the syntax, inheritance confusion, ...
0
votes
2answers
71 views
Are cursors ever really the “right” choice?
Sometimes procedural programming is absolutely unavoidable when processing data.
I am currently working on optimizing some legacy code. It uses a cursor, 63 pairs of IF/ELSE statements and ...
0
votes
0answers
71 views
PHP OO Performance when generating thousands of an object type
I've been reading the Matt Zandstra PHP Object Oriented Designs and Patterns and quite liked an idea but was wondering how it effects PHP Performance when you create hundreds maybe thousands of them.
...
0
votes
1answer
52 views
OZ Programming language: Boolean guard
I am taking a subject at school which require us to use the Mozart Programming Interface. I do not really think much of it so far. But anyways, here is the question:
In OZ you are only allowed to ...
0
votes
1answer
97 views
want a simple code for the getting the state name and city name depend on the selection
I am new to both android and java. I am developing a simple app which contain country , state and city which are selected by spinner. Now consider while am selecting the country(India) then i need to ...