vote up -3 vote down star

Specially in comparison to C/C++ (which are declarative), how is Java imperative?

flag

4  
I believe that C and C++ are both imperative. – Thomas Owens Nov 7 at 18:54
maybe the confusion is because C/C++ programs need to declare functions beside defining them? That doesn't have anything to do with declarative languages (or declarative programming, which can be done with imperative languages) – Javier Nov 7 at 20:24

2 Answers

vote up 8 vote down

C/C++ is imperative too.

Edit: Imperative is do this, then do that, then do the next thing and so on. Declarative is, this are the rules, now what's the answer to this question. Google, you'll find plenty of info.

link|flag
1  
stackoverflow.com/questions/1619834/… has lots of examples of declarative vs. imperative languages which might help hanifr get a handle on what a declarative language is. – itowlson Nov 7 at 18:57
vote up 5 vote down

You are confusing the concepts, C and C++ are not declarative languages. Refer to Declarative Programming and Imperative Programming. Basically, with declarative languages (e.g. Prolog), you specifiy what you want to accomplish, without specifying how to accomplish it, which contrasts with imperative languages.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.