What do you mean by the expressiveness of a programming language?

前端 未结 11 1756
眼角桃花
眼角桃花 2021-01-31 07:56

I see a lot of the word \'expressiveness\' when people want to stress one language is better than the other. But I don\'t see exactly what they mean by it.

  • Is it
11条回答
  •  失恋的感觉
    2021-01-31 08:25

    Take for example LINQ. It allows you to use functional programming.

    Functional programming emphasizes the application of functions, in contrast to the imperative programming style, which emphasizes changes in state.

    LINQ allows your to express what you want done instead of how to do it. This is a clear example os expressiveness.

提交回复
热议问题