I keep hearing this term tossed around in several different contexts. What is it?
feedback
|
|
Declarative programming is when you write your code in such a way that it describes what you want to do, and not how you want to do it. It is left up to the compiler to figure out the how. Examples of declarative programming languages are SQL and Prolog. | |||||||
feedback
|
|
The other answers already do a fantastic job explaining what declarative programming is, so I'm just going to provide some examples of why that might be useful. Context IndependenceDeclarative Programs are context-independent. Because they only declare what the ultimate goal is, but not the intermediary steps to reach that goal, the same program can be used in different contexts. This is hard to do with imperative programs, because they often depend on the context (e.g. hidden state). Take
And many more … OptimizationBecause you don't prescribe the computer which steps to take and in what order, it can rearrange your program much more freely, maybe even execute some tasks in parallel. A good example is a query planner and query optimizer for a SQL database. Most SQL databases allow you to display the query that they are actually executing vs. the query that you asked them to execute. Often, those queries look nothing like each other. The query planner takes things into account that you wouldn't even have dreamed of: rotational latency of the disk platter, for example or the fact that some completely different application for a completely different user just executed a similar query and the table that you are joining with and that you worked so hard to avoid loading is already in memory anyway. There is an interesting trade-off here: the machine has to work harder to figure out how to do something than it would in an imperative language, but when it does figure it out, it has much more freedom and much more information for the optimization stage. | |||
feedback
|
|
Crudely put, it means specifying logic in terms of rules and facts, rather than as instructions. | |||
|
feedback
|
|
It's a method of programming based around describing what something should do or be instead of describing how it should work. In other words, you don't write algorithms made of expressions, you just layout how you want things to be. Two good examples are HTML and WPF. This Wikipedia article is a good overview: http://en.wikipedia.org/wiki/Declarative_programming | |||||||||
feedback
|
|
imagine an excel page. With columns populated with formulas to calculate you tax return. All the logic is done declared in the cells, the order of the calculation is by determine by formula itself rather than procedurally. That is sort of what declarative programming is all about. You declare the problem space and the solution rather than the flow of the program. Prolog is the only declarative language I've use. It requires a different kind of thinking but it's good to learn if just to expose you to something other than the typical procedural programming language. | |||
|
feedback
|
|
It may sound odd, but I'd add Excel (or any spreadsheet really) to the list of declarative systems. A good example of this is given here. | ||||
|
feedback
|
|
Declarative programming is the picture, where imperative programming is instructions for painting that picture. You're writing in a declarative style if you're "Telling it what it is", rather than describing the steps the computer should take to get to where you want it. When you use XML to mark-up data, you're using declarative programming because you're saying "This is a person, that is a birthday, and over there is a street address". Some examples of where declarative and imperative programming get combined for greater effect:
| |||||||||
feedback
|
|
As far as I can tell, it started being used to describe programming systems like Prolog, because prolog is (supposedly) about declaring things in an abstract way. It increasingly means very little, as it has the definition given by the users above. It should be clear that there is a gulf between the declarative programming of Haskell, as against the declarative programming of HTML. | |||||||||||
feedback
|
|
I'd explain it as DP is a way to express
...and where there is a deduct engine usually working with a unification algorithm to find the goals. | |||
|
feedback
|
|
I am sorry, but I must disagree with many of the other answers. I would like to stop this muddled misunderstanding of the definition of declarative programming. Definition Referential transparency (RT) of the sub-expressions is the only required attribute of a declarative programming expression, because it is the only attribute which is not shared with imperative programming. Other cited attributes of declarative programming, derive from this RT. Please click the hyperlink above for the detailed explanation. Spreadsheet example Two answers mentioned spreadsheet programming. In the cases where the spreadsheet programming (a.k.a. formulas) does not access mutable global state, then it is declarating programming. This is because the mutable cell values are the monolithic input and output of the "main()" (the entire program). The new values are not written to the cells after each formula is executed, thus they are not mutable for the life of the declarative program (execution of all the formulas in the spreadsheet). Thus relative to each other, the formulas view these mutable cells as immutable. An RT function is allowed to access immutable global state (and also mutable local state). Thus the ability to mutate the values in the cells when the program terminates (as an output from "main()"), does not make them mutable stored values in the context of the rules. The key distinction is the cell values are not updated after each spreadsheet formula is performed, thus the order of performing the formulas does not matter. The cell values are updated after all the declarative formulas have been performed. | ||||
|
feedback
|
|
A couple other examples of declarative programming:
Declarative programming is nice because it can help simplify your mental model* of code, and because it might eventually be more scalable. For example, let's say you have a function that does something to each element in an array or list. Traditional code would look like this:
No big deal there. But what if you use the more-declarative syntax and instead define DoSomething() as an Action? Then you can say it this way:
This is, of course, more concise. But I'm sure you have more concerns than just saving two lines of code here and there. Performance, for example. The old way, processing had to be done in sequence. What if the .ForEach() method had a way for you to signal that it could handle the processing in parallel, automatically? Now all of a sudden you've made your code multi-threaded in a very safe way and only changed one line of code. And, in fact, there's a an extension for .Net that lets you do just that.
| ||||
feedback
|
|
OK, because somebody didn't like my previous answer, let me try to restate it. The property of code known by the adjective "declarative" needs a more measurable definition than examples or loose descriptions (i.e. "SQL", or "not imperative"). In my opinion, there is a type of code that is consistent with currently accepted ideas, such as Don't Repeat Yourself (DRY). This is measurable and does not depend on the form or syntax or semantics of the code. It says, in the ideal extreme, any single change in requirements should be implementable with a single insertion, deletion, or replacement of source code text. To the extent that code approaches this ideal, it minimizes development effort and bugs, in a measurable way. Just examine the differences recorded by the SCCS system, and count them. I hope it is agreed that this "edit count" is a good thing to minimize. I think the property that "declarativity" is after is to minimize the edit count, and I think this necessarily makes the code more of a problem description than a problem solution. That's why I define "declarative" as the property of minimizing that count. I prefer that over "not imperative" or "functional" or "logical" because those are squishy and don't get at the important property. I think we should not insist that declarative code be especially readable by the uninitiated. If it is, that's fine, but we should not be surprised if an up-front learning curve is the price of a long-term benefit. In this it is like any language or technique. | ||||
|
feedback
|