The Working Programmer's Guide To Language Paradigms
Written by Mike James   
Thursday, 25 May 2017
Article Index
The Working Programmer's Guide To Language Paradigms
Functional, Logic & Dynamic
Graphical Languages

The Procedural v Declarative UI

It is also worth knowing that the procedural/declarative split is also used in a lesser sense when applied to situation like UI construction.

Markup and object creation initialization languages like XAML or MXML are called declarative because you write a specification of a UI using them and don't care about how the objects representing the UI are created.

The procedural approach is to call object constructors in a given order and initialize properties explicitly.

For example, you might create a button by creating a Button object:

Button button1=new Button();
Button.width=100;
Button.height=200;

The declarative approach would be to use a markup language. Something like:

<Button width=100,height=200></Button>

If you think about this for a moment you will realise that this distinction really is trivial - in theory at least. All that happens to the markup language is that it is used to create the objects and set the properties that the procedural code explicitly created. You can see that there is some loss of procedure in going to the declarative form but not much because there are no loops or decisions used. 

The real reason for using object creation and initialisation languages is that they provide a language neutral way of creating a UI which makes the implementation of graphical designers easier.

In other words, markup/object creation languages v procedural languages is not a deep issue.

To see what the issue really is you have to take a look at the two best known approaches to declarative languages - functional and logical languages.

Functional

Functional languages try to reduce, or is it enhance, programming languages to mathematical functions.

That is, when you use a mathematical function its result never changes - the result of Sin(0.3) is always the same and a function is just a lookup table. Sometimes the lookup table is too big to be stored and in this case the result is returned after being calculated using a procedure - but notice that all mathematical functions can in theory be implemented as lookup tables.

That is mathematical function provide a way to do computation without any dynamic change.

A function returns its result and its the same result for the same input. It is static and stateless. 

This isn't so with the procedural programming meaning of functions or procedures.

Note: a function is just a procedure that returns a single value as its result. All procedures can be cast as functions by the simple trick of having them return a single but perhaps complicated structure containing all there results rolled up into one object.

A programming function can produce side effects and state changes. For example:

function addone(){
 globalvariable=globalvariable+1;
 return globalvariable
}

In this case each time the function is called it returns a new value - it is counting - it is procedural - and this can't be allowed in a functional language.

In a functional language the sort of counting described above isn't allowed and variables aren't variable in the sense that once defined they have that value for the duration of the program - they are "bound" to their value.

At this point non-functional programmers generally give up because this is nothing like the way they think. How can I have loops and conditions if variables never change?

There are two answers to this question.

The first is why are you counting?

If the counting is part of an algorithm that gets you to a solution then don't do it. Simply get the solution.

That is, if you implement Sin(0.3) with an iterative calculation then simply hide the iteration behind the function and return the result.

The second answer is that there are functional ways of doing the same job - mostly recursion and functional composition.

For example, if f(x) is a function which returns x+1 then counting can be implemented as:

x=0;
y=f(x);
z=f(f(x));

and so on... Notice that in the nested set of functions

z=f(f(f(f(f(f(f(x))))));

only one variable z is bound to the result, no variables change their values and yet even so there is still an "increment" as you work your way into the brackets.

In principle the function does something with the count much as you would in a for loop say. This is the functional languages equivalent of the fixed repeat for loop. There are also equivalents of for loops that perform variable numbers of repeat using either functional composition or recursion.

Functional programming has big advantages in that it doesn't specify how functions should be computed only that they should return their result.

This means it can be easier to see what is going on and easier to perform implementation based optimisations such as parallel execution. Of course under the covers there is a procedural implementation whirring away - isn't there always.

Note: There usually a lot more to the functional approach than outlines above but this is the part that is most important. It is the initial shift from the dynamic to the static.

 

languages

Logic programming

Logic programming is another approach to the declarative style and in many ways it is more true to the ideals than functional programming.

Logic programming is typified by a single language and dialects of the same - Prolog. The language itself was developed in 1972 but it was based on earlier advances in logic. Logic programming is a bit like functional programming in that it generally doesn't allow functions or variables to change their value but it has one extra ingredient - proof. 

In a logic programming language you can write a statement like:

isconnected(A,B);

and the language will return true if A and B are connected and false otherwise.

This may sound trivial but it even works if A and B aren't directly connected but only connected by a chain of intermediates - perhaps thousands of intermediates.

The language has built into its core a recursive search facility that will "prove" statements according what what is stored in its database. For example if you write

 isconnected(A,x)

where x is an unbound variable then the recursive search will attempt to find a value for x that makes the statement true.

More generally you can write:

predicate(A,B,C,x,y,z)

and the search will find a combination of values for x, y and z that make the predicate (a function that returns true or false) true.

Prolog is a general purpose language and it has facilities for input/output, graphics and so on - but most programmers will admit that the methodology is a little strained when you are working with predicates simply for their side effects.

Some problems are very easy to solve using logic programming. What is encouraging is that many very difficult problems suddenly become easy the real question is how far can you go.

Today it isn't clear if logic programming will lead to anything more or if it is best treated as a specialist approach - a sort of functional programming with logic thrown in. 

Dynamic

Now we come to a sideline in the language paradigm story.

There is a lot of talk about dynamic languages at the moment.

This is partly because until quite recently the dominant languages Java, C++ and C# were static languages - so it's quite a lot about a reaction to the old guard. The static/dynamic distinction is a very difficult one to pin down precisely.

In the old days it could be summed up as the split into compiled and interpreted languages but today it is more about a split in the approach to how object oriented programming should be done.

The current meaning of Dynamic when applied to languages usually refers to typing.

When you create an object oriented language you have to decide if it is going to be strongly or weakly typed. Every object defines a type and in a strongly typed language you specify exactly what type can be used in any given place.

If a function needs parameters that of type Apple you can't call it used parameters that are Oranges. The alternative approach is to allow objects of any type to be used anywhere and just let the language try to do the best job it can with what it is presented - this is weak typing.

Now in a strongly typed language you can choose to enforce the typing when the language is compiled or at run time. This is the main distinction between static and dynamic typing. In a static typed language you can look at a variable and see that it is being assigned to an Apple just by reading the code. In a dynamically typed language you can't tell what is being assigned to a variable until the assignment is done at run time.

Clearly there is an interaction between strong and weak typing and static and dynamic. A weakly typed language really doesn't have much choice but to use what looks like dynamic typing.

Weak typing or dynamic typing has the ability to make program easier to write but the loss of the discipline of controlling type makes it more likely that a runtime error will occur and arguably makes it harder to find bugs.

There is also another slightly different use of the term "typing". Algebraic typing is a system of typing that leads to the notion that a program is a proof in the type system. Some functional programming languages make a lot of use of algebraic typing and they invent ways around its restrictions so as to be able to do things that a procedural language can without seeming to deviate from the straight jacket of type.

At the moment this approach has a very strong appeal to the brightest of programmer and it is difficult to see that it will ever become the best way to program - despite the fact that its proponents can prove that its better. 

There is a wider meaning to the term dynamic when applied to languages. Right back at the start the first languages didn't really distinguish between instructions and data and this allowed programs to modify themselves. Later on self modifying code acquired a reputation for being dangerously unstable and buggy. As a result languages put up barriers between code and data. A program could manipulate data but not its own code. However interpreted languages such as early Basic and Javascript blurred the distinction. They generally allowed the code to modify itself and hence became dynamic languages in a broader sense.

As you can guess languages that allow self modification are powerful but also dangerous unless the facility is controlled in some way. Modern dynamic languages such as Ruby do attempt to control how the language can be extended but some commonly used script languages such as Javascript are still something of a free for all.

Dynamic languages my have something to offer the future but there is a sense in which we are simply returning to the wild primitive expression of programming that existed in a time before we learned better. Perhaps every so many generations programmers need to experience programming in the raw.



Last Updated ( Thursday, 25 May 2017 )