Let's compare and contrast what these concepts mean and where the approaches are most applicable.
For further actions, you may consider blocking this person and/or reporting abuse
Let's compare and contrast what these concepts mean and where the approaches are most applicable.
For further actions, you may consider blocking this person and/or reporting abuse
Muhammad Essa -
Antonio | CEO at Litlyx.com -
Marco PatiΓ±o LΓ³pez -
RemoteWLB -
Top comments (16)
Imperative and declarative programming are similar to the imperative and declarative moods in English writing. The imperative mood is basically for issuing commands like "sit down" or "be quiet". The declarative mood indicates what is occurring, without strictly defining the steps to make that action occur ("John is walking to the store" rather than "left foot, right foot, left foot, ...").
Imperative programming tends to be low-level, specifying exactly what should be done, step-by-step. Declarative programming tends to be higher-level, specifying the outcome without necessarily dictating how that outcome should be achieved.
An example imperative snippet:
An example declarative snippet:
This got me paranoid for a sec π
I'm so used to
i
πYeah I use double-indices like this because it makes it easier to ctrl-F for them!
A while ago I wrote about what is declarative programming
Declarative Programming & React
Saurabh Sharma γ» Dec 26 '18 γ» 3 min read
Person.walk() is declarative
walk(Person) {
// code to move the person in your ui toolkit
} is imperative
Places where declarative programming has been really useful, are places where we are not particularly interested in how the output gets created, as long as it's correct. Things like web programming, SQL, and spreadsheets are obvious areas where this already works well. I think the model for it makes sense in these situations because the engines that actually generate the running programs (browser, RDBMS, Excel) have a well defined output so you can build that engine in the first place and know the results are correct.
At some level you need imperative programming because computers operate on simple instructions. Declarative programming is just another abstraction over this which is closer to a spoken language because that's usually how humans think about things anyways.
Imperative programming is definitely a good way to begin as it provides a conceptual model that is very easy to understand. Many of the OOP languages like C++ and Java are designed on the basis of imperative programming.
I have worked on BackboneJS which primarily supports imperative programming. The lack of two way binding due to which one had to specify the templates, models, and event listeners every time leads to loss of productivity and manageability.
On the other hand, the new javascript frameworks like React, Vue, and Angular are based on a declarative approach. In these frameworks, we are mainly dealing with the main component and the framework is responsible for performing all the Javascript/ DOM operations to get the desired result.
When working on large scale applications we often prefer the declarative programming approach as it provides the following:
I usually prefer a declarative style. Imperative style makes the code hard to understand and work with later on. Here is a direct comparison. Both implementations do exactly the same.
Imperative:
Declarative:
Maybe this comparison is a little bit unfair. But it shows the fact, that you get easily lost in details and spaghetti code, when writing an imperative style.
Imperative thinking is about order.
Declarative thinking is about dependencies.
You can code in either style with the other mindset, too.
Imperative thinking is about specialized control.
Declarative thinking is about generalized analysis.
Ha, that is true. The declarative term somewhat misleading. In reality, it's a scale. From very imperative, where every instruction is explicit, to not as imperative. Only when you get to the other end of the scale (not imperative at all) is it truly "declarative"... but that's (in theory) impossible. Nothing can know merely from "I want a cake" exactly what to do, some assumptions and some steps must be given.
Imperative to optimize for performance. Declarative to optimize for human understanding.
It depends of what you are doing. When i do stats and data science with R or even python. Even thought you arenβt writing any class perse. But you still using python classes from data science oriented library.
For me, i am using both. You are basically looking for a specific function or method to proceed a calculation or operation with a given set of data.
βββR
procedural and declarative
df is are data frame
Df = data.frame(...)
Reg <- lm(formula= y~ ., data=df)
Summary(reg)
βββ
You will find cases where you want to do a functional approach to minimize error. In order to stay DRY.
This is my take so far based on my journey doing stats and learning data science.
The old me thought very much in the binary on/off terms of declarative / imperative. I used to think it made sense to only use one or the other. Over time I've come to realise that each flavour has it's own place. I generally think now more in terms of "how expressive my logic is". Sometimes higher-level code is better written imperatively to showcase steps, sometimes lower level things are better in declarative.