七度&光 2012-06-27 09:44 采纳率: 22.2%
浏览 401
已采纳

Clojure、 scheme / racket 和 Common Lisp 有什么区别?

I know they are dialects of the same family of language called lisp, but what exactly are the differences? Could you give an overview, if possible, covering topics such as syntax, characteristics, features and resources.

转载于:https://stackoverflow.com/questions/11223403/what-are-the-differences-between-clojure-scheme-racket-and-common-lisp

  • 写回答

4条回答 默认 最新

  • 胖鸭 2012-06-27 10:07
    关注

    They all have a lot in common:

    • Dynamic languages
    • Strongly typed
    • Compiled
    • Lisp-style syntax, i.e. code is written as a Lisp data structures (forms) with the most common pattern being function calls like: (function-name arg1 arg2)
    • Powerful macro systems that allow you to treat code as data and generate arbitrary code at runtime (often used to either "extend the language" with new syntax or create DSLs)
    • Often used in functional programming style, although have the ability to accommodate other paradigms
    • Emphasis in interactive development with a REPL (i.e. you interactively develop in a running instance of the code)

    Common Lisp distinctive features:

    Clojure distinctive features:

    • Largest library ecosystem, since you can directly use any Java libraries
    • Vectors [] and maps {} used as standard in addition to the standard lists () - in addition to the general usefullness of vectors and maps some believe this is a innovation which makes generally more readable
    • Greater emphasis on immutability and lazy functional programming, somewhat inspired by Haskell
    • Strong concurrency capabilities supported by software transactional memory at the language level (worth watching: http://www.infoq.com/presentations/Value-Identity-State-Rich-Hickey)

    Scheme distinctive features:

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(3条)

报告相同问题?

悬赏问题

  • ¥15 QT6颜色选择对话框显示不完整
  • ¥20 能提供一下思路或者代码吗
  • ¥15 用twincat控制!
  • ¥15 请问一下这个运行结果是怎么来的
  • ¥15 单通道放大电路的工作原理
  • ¥30 YOLO检测微调结果p为1
  • ¥15 DS18B20内部ADC模数转换器
  • ¥15 做个有关计算的小程序
  • ¥15 如何用MATLAB实现以下三个公式(有相互嵌套)
  • ¥30 关于#算法#的问题:运用EViews第九版本进行一系列计量经济学的时间数列数据回归分析预测问题 求各位帮我解答一下