I keep hearing this term tossed around in several different contexts. What is it?
|
|
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. |
|||||||||
|
|
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. |
|||||
|
|
Crudely put, it means specifying logic in terms of rules and facts, rather than as instructions. |
|||
|
|
|
I have refined my understanding of declarative programming, since Dec 2011 when I provided an answer to this question. Here follows my current understanding. The long version of my understanding (research) is detailed at this link, which you should read to gain a deep understanding of the summary I will provide below. Imperative programming is where mutable state is stored and read, thus the ordering and/or duplication of program instructions can alter the behavior (semantics) of the program (and even cause a bug, i.e. unintended behavior). In the most naive and extreme sense (which I asserted in my prior answer), declarative programming (DP) is avoiding all stored mutable state, thus the ordering and/or duplication of program instructions can NOT alter the behavior (semantics) of the program. However, such an extreme definition would not be very useful in the real world, since nearly every program involves stored mutable state. The spreadsheet example conforms to this extreme definition of DP, because the entire program code is run to completion with one static copy of the input state, before the new states are stored. Then if any state is changed, this is repeated. But most real world programs can't be limited to such a monolithic model of state changes. A more useful definition of DP is that the ordering and/or duplication of programming instructions do not alter any opaque semantics. In other words, there are not hidden random changes in semantics occurring-- any changes in program instruction order and/or duplication cause only intended and transparent changes to the program's behavior. The next step would be to talk about which programming models or paradigms aid in DP, but that is not the question here. |
||||
|
|
|
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 |
|||||||||
|
|
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:
|
|||||||||
|
|
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. |
|||
|
|
|
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. |
||||
|
|
|
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. |
||||
|
|
|
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. |
|||
|
|
|
Declarative programming is "the act of programming in languages that conform to the mental model of the developer rather than the operational model of the machine". The difference between declarative and imperative programming is well illustrated by the problem of parsing structured data. An imperative program would use mutually recursive functions to consume input and generate data. A declarative program would express a grammar that defines the structure of the data so that it can then be parsed. The difference between these two approaches is that the declarative program creates a new language that is more closely mapped to the mental model of the problem than is its host language. |
||||
|
|
|
Loosely: Declarative programming tends towards:-
Imperative programming tends towards:-
As a result, an imperative style helps the reader to understand the mechanics what the system is actually doing, but may give little insight into the problem that it is intended to solve. On the other hand, a declarative style helps the reader to understand the problem domain and the approach that the system takes towards the solution of the problem, but is less informative on the matter of mechanics. Real programs (even ones written in languages that favor the ends of the spectrum, such as ProLog or C) tend to have both styles present to various degrees at various points, to satisfy the varying complexities and communication needs of the piece. One style is not superior to the other; they just serve different purposes, and, as with many things in life, moderation is key. |
|||
|
|
|
Since I wrote my prior answer, I have formulated a new definition of the declarative property which is quoted below. I have also defined imperative programming as the dual property. This definition is superior to the one I provided in my prior answer, because it is succinct and it is more general. But it may be more difficult to grok, because the implication of the incompleteness theorems applicable to programming and life in general are difficult for humans to wrap their mind around. The quoted explanation of the definition discusses the role pure functional programming plays in declarative programming.
|
||||
|
|
|
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. |
|||||||||||
|
|
Declarative Programming is programming with declarations, i.e. declarative sentences. Declarative sentences have a number of properties that distinguish them from imperative sentences. In particular, declarations are:
A relevant point is that these are all structural properties and are orthogonal to subject matter. Declarative is not about "What vs. How". We can declare (represent and constrain) a "how" just as easily as we declare a "what". Declarative is about structure, not content. Declarative programming has a significant impact on how we abstract and refactor our code, and how we modularize it into subprograms, but not so much on the domain model. Often, we can convert from imperative to declarative by adding context. E.g. from "Turn left. (... wait for it ...) Turn Right." to "Bob will turn left at intersection of Foo and Bar at 11:01. Bob will turn right at the intersection of Bar and Baz at 11:06." Note that in the latter case the sentences are idempotent and commutative, whereas in the former case rearranging or repeating the sentences would severely change the meaning of the program. Regarding monotonic, declarations can add constraints which subtract possibilities. But constraints still add information (more precisely, constraints are information). If we need time-varying declarations, it is typical to model this with explicit temporal semantics - e.g. from "the ball is flat" to "the ball is flat at time T". If we have two contradictory declarations, we have an inconsistent declarative system, though this might be resolved by introducing soft constraints (priorities, probabilities, etc.) or leveraging a paraconsistent logic. |
|||
|
|
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.
|
|||||
|
|
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. |
||||
|
|
