DEV Community

Cover image for Imperative vs Declarative Programming
Harley Ferguson
Harley Ferguson

Posted on • Updated on

Imperative vs Declarative Programming

Photo by Émile Perron on Unsplash.

The term 'declarative programming' has regained popularity in the recent years. But what exactly is it and how does it compare to imperative programming?

Wikipedia defines imperative programming as:

A programming paradigm that uses statements that change a program's state. An imperative programing consists of commands for the computer to perform.

While declarative programming is defined as:

A style of building the structure and elements of computer programs—that expresses the logic of a computation without describing its control flow.

Okay so what do these definitions actually mean and how are they different? Let's explore a simple analogy.


If I had a butler robot and I wanted it to make me a sandwich, imperatively I'd have to tell it this:

1. Go to the kitchen
2. Grab the bread, peanut butter and a butter knife
3. Remove 2 slices of bread
4. Use the knife to butter one slice of bread
5. Place the other slice on top of the buttered slice
6. Bring me the sandwich
Enter fullscreen mode Exit fullscreen mode

To do the same thing declaratively would look like this:

Hey Mr Robot, I feel like a peanut butter sandwich.
Enter fullscreen mode Exit fullscreen mode

Quite the difference, right? Imperatively means that we have to tell our butler robot (the program) every step it needs to do in order to complete the task. Doing the same thing means that we just declare our final state (having a sandwich) and we don't really care how it gets to that point.

This means that declarative programming is generally simpler to code because it's far more readable, doesn't require concerning yourself with lower level logic and allows use to define the solution and not each procedure.


You may have been writing declaratively without even knowing it:

SQL

SQL queries can also be declarative.

SELECT * FROM GAMES
Enter fullscreen mode Exit fullscreen mode

Here we are just saying that we want all of the games in our database but we aren't instructing the computer on how it should be getting every game.

CSS

CSS is declarative programming. Our CSS classes are actually just defining how our elements should look while the browser takes care of the implemenation.

C Sharp

C# allows for developers to write both imperatively and declaratively.

var results = games.Where(game => game.Series == "God of War")
Enter fullscreen mode Exit fullscreen mode

The above code is an example of how, using Linq, we can write declarative code. All we are asking for us a list of games that a part of the "God of War" series but we don't care how the program gives us that data. That's Linq's problem.

Achieving the same functionality imperatively would look like this:

List<Game> results = new List<Game>();
foreach(var game in games)
{
    if (game.Series == "God of War")
    {
        results.Add(game);
    }
}
Enter fullscreen mode Exit fullscreen mode

Okay so why has "declarative" programming become more popular in recent years? Well that would be because of React.

React has heavily promoted itself as declarative. The reason for this is because alternative frameworks (like Angular) or libraries (like jQuery) are imperative. This may leave you wanting a code example but the difference between React and Angular is a blog post on it's own.

Writing less code with regards to your UI rendering does come at a cost in React though. You're going to need to now understand state and how to manage it so that you can effectively render your UI.


Hopefully now you have an idea on what these concepts are so the next time some hot shot coder is throwing around terms like "paradigm" and "declarative programming", you can ask them how their robot butler is doing.

Top comments (1)

Collapse
 
canmingir profile image
Can Mingir

Can we say if you are managing the control flow, it is not a declarative programming? Just testing the theory :)