Declarative programming is a paradigm of expressing the logic of a computer program or computation without explicit describing its control flow.
-5
votes
5answers
381 views
Declarative Language [closed]
I was reading an article on Declarative Programming Languages.
If I don't understand the qualities of this type/paradigm of programming languages and it's contrast to Imperative languages, should I ...
1
vote
0answers
46 views
Academic literature on declarative programming [closed]
I'm using declarative programming as an example in a paper I'm currently writing. Although there is plenty of information about DP scattered through blog posts, wiki entries and, indeed, ...
-1
votes
1answer
85 views
What are some similarities between Imperative and Declarative Programming? [closed]
I was just investigating this topic and all I can find is differences, and that declarative programming is essentially the opposite of imperative programming, from what I understood, does anyone know ...
0
votes
1answer
182 views
Are object oriented languages more powerful than declarative programming languages [closed]
Are object oriented languages more powerful than declarative programming languages? By powerful I mean are they able to solve a class of problems that any program written in a declarative programming ...
6
votes
1answer
2k views
Why doesn't mxml support component constructors?
Why doesn't the Flex framework's mxml language support a constructor for components or accept constructor arguments for components? It's as far as I know not possible to declare an ActionScript object ...
1
vote
1answer
62 views
How to describe a language that ignores implimentation and only describes behavior
I wanted to ask how people would describe a programming language that basically describes the behavior of a program rather than the implementation - ie. a language that ignores implementation issues ...
3
votes
3answers
155 views
Replacing imperative PriorityQueue in my algorithm
I currently have a method that uses a scala.collection.mutable.PriorityQueue to combine elements in a certain order. For instance the code looks a bit like this:
def process[A : Ordering](as: ...
0
votes
2answers
225 views
Declarative language support in .NET
I am developing a simulation engine with Visual Studio that will offer support for building business process simulations. One of the key features will be a declarative language that will allow ...
3
votes
4answers
728 views
How do I declaratively create a list in Scala?
In C# I can declare a list declaratively, in other words declare its structure and initialise it at the same time as follows:
var users = new List<User>
{
new User ...
4
votes
3answers
571 views
Cards representation in prolog
I'm trying to learn prolog. This are my first steps with this language. As exercise I want to write program which can recognize some poker hands (Straight flush, Four of a kind, Full house etc.).
I'm ...
2
votes
1answer
196 views
How do program in a declarative style?
I am enjoying the puppet declarative model. I'd like to try to incorporate more of this into my code.
I program in python currently, however, and I tend to think imperatively while doing so. It's ...
3
votes
1answer
142 views
Feedback, resources, and information for declarative programming language
I've been thinking of some concepts underlying a new language. It was kind of a toy at first, but now I'm wondering whether it could really mean something. I'm posting this question to Stack ...
0
votes
3answers
197 views
ASP.NET is based on declarative programming?
Recently I have noticed about a subtle restriction in GridView's paging mechanism. Efficient paging, loading just requested page of data, is only possible with using DataSource controls like ...
2
votes
4answers
213 views
What, if any, is wrong with this approach to declarative I/O
I'm not sure exactly how much this falls under 'programming' opposed to 'program language design'. But the issue is this:
Say, for sake of simplicity we have two 'special' ...
28
votes
3answers
8k views
What are the Open Source alternatives to WPF/XAML?
If we've learned anything from HTML/CSS it's that, declarative languages (like XML) do a good job of describing User Interfaces because:
It's easy to build code preprocessors that can template the ...
32
votes
5answers
12k views
What is the difference between declarative and imperative programming
I have been searching the web looking for a definition for declarative and imperative programming that would shed some light for me. However the language used at some of the resources that I have ...
-5
votes
2answers
2k views
How is Java an 'imperative' programming language and not a 'declarative' one?
Specially in comparison to C/C++ (which are declarative), how is Java imperative?
27
votes
3answers
12k views
Difference between Declarative and Procedural Programming?
During one of my interviews, they asked me the difference between those two (Declarative Programming and Procedural Programming) programming type and the problem is I couldn't give right answer they ...