I hear this word a lot in sentences like "javascript is a very expressive language". Does it just mean there aren't a lot of rules, or does "expressive" have a more specific meaning?
|
|
|||
|
|
|
I take it to mean that it's capable of expressing ideas/algorithms/tasks in an easy-to-read and succinct way. Usually I associate a language being expressive with syntactic sugar, although that's not always the case. Examples in C# of it being expressive would be:
A different example would be generics: before C# got generics, you couldn't express the idea of "an |
||
|
|
|
|
Neal Grafter has a blog with a good quote from it on the subject...
I'd say that it means you can more naturaly express your thoughts in code. |
||
|
|
|
|
Maybe this site http://gafter.blogspot.com/2007/03/on-expressive-power-of-programming.html can help you In short he says: In my mind, a language construct is expressive if it enables you to write (and use) an API that can't be written (and used) without the construct. In the context of the Closures for Java proposed language extension, control abstraction APIs are the kind of thing that don't seem to be supported by the competing proposals. |
|||
|
|
|
|
That's a tough one. For me, it has to do with the ease at which you can express your intent. This is different in different languages, and also depends a lot on what you want to do, so this is an area where generalizations are common. It's also subjective and personal, of course. It's easy to think that a more high-level language is always more expressive, but I don't think that is true. It depends on what you're trying to express, i.e. on the problem domain. If you wanted to print the floating-point number that has the binary pattern |
||
|
|
|
|
'Expressive' means that it's easy to write code that's easy to understand, both for the compiler and for a human reader. Two factors that make for expressiveness:
Compare this expressive Groovy, with the less expressive Java eqivalent:
vs
Sometimes you trade precision for expressiveness -- the Groovy example works because it assumes stuff that Java makes you to specify explicitly. |
||
|
|
|
|
HA! I haven't heard that one. |
||
|
|
