csdnceshi62 2009-10-06 19:20 采纳率: 100%
浏览 382
已采纳

为什么 Clojure 在"符号"之外还有"关键字"?

I have a passing knowledge of other Lisps (particularly Scheme) from way back. Recently I've been reading about Clojure. I see that it has both "symbols" and "keywords". Symbols I'm familiar with, but not with keywords.

Do other Lisps have keywords? How are keywords different from symbols other than having different notation (ie: colons)?

转载于:https://stackoverflow.com/questions/1527548/why-does-clojure-have-keywords-in-addition-to-symbols

  • 写回答

5条回答 默认 最新

  • 关注

    Here's the Clojure documentation for Keywords and Symbols.

    Keywords are symbolic identifiers that evaluate to themselves. They provide very fast equality tests...

    Symbols are identifiers that are normally used to refer to something else. They can be used in program forms to refer to function parameters, let bindings, class names and global vars...

    Keywords are generally used as lightweight "constant strings", e.g. for the keys of a hash-map or the dispatch values of a multimethod. Symbols are generally used to name variable and functions and it's less common to manipulate them as objects directly except in macros and such. But there's nothing stopping you from using a symbol everywhere you use a keyword (if you don't mind quoting them all the time).

    The easiest way to see the difference is to read Keyword.java and Symbol.java in the Clojure source. There are a few obvious implementation differences. For example a Symbol in Clojure can have metadata and a Keyword can't.

    In addition to single-colon syntax, you can use a double-colon to make a namespace-qualified keyword.

    user> :foo
    :foo
    user> ::foo
    :user/foo
    

    Common Lisp has keywords, as do Ruby and other languages. They are slightly different in those languages of course. Some differences between Common Lisp keywords and Clojure keywords:

    1. Keywords in Clojure are not Symbols.

      user> (symbol? :foo)  
      false
      
    2. Keywords don't belong to any namespace unless you specifically qualify them:

      user> (namespace :foo)
      nil
      user> (namespace ::foo)
      "user"
      

    (Thanks Rainer Joswig for giving me ideas of things to look at.)

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

报告相同问题?

悬赏问题

  • ¥15 公交车和无人机协同运输
  • ¥15 stm32代码移植没反应
  • ¥15 matlab基于pde算法图像修复,为什么只能对示例图像有效
  • ¥100 连续两帧图像高速减法
  • ¥15 如何绘制动力学系统的相图
  • ¥15 对接wps接口实现获取元数据
  • ¥20 给自己本科IT专业毕业的妹m找个实习工作
  • ¥15 用友U8:向一个无法连接的网络尝试了一个套接字操作,如何解决?
  • ¥30 我的代码按理说完成了模型的搭建、训练、验证测试等工作(标签-网络|关键词-变化检测)
  • ¥50 mac mini外接显示器 画质字体模糊