书栈网 · BookStack 本次搜索耗时 0.029 秒,为您找到 40874 个相关结果.
  • What’s Next?

    What’s Next? What’s Next? In the next chapter, you’ll look at how to implement a macro that compiles FOO expressions into Common Lisp so you can embed HTML generation code dire...
  • 第十四章:进阶议题

    第十四章:进阶议题 第十四章:进阶议题 本章是选择性阅读的。本章描述了 Common Lisp 里一些更深奥的特性。Common Lisp 像是一个冰山:大部分的功能对于那些永远不需要他们的多数用户是看不见的。你或许永远不需要自己定义包 (Package)或读取宏 (read-macros),但当你需要时,有些例子可以让你参考是很有用的。
  • Saving Your Work(保存工作成果)

    Saving Your Work(保存工作成果) Saving Your Work(保存工作成果) You could argue that this is a complete “hello, world” program of sorts. However, it still has a problem. If you exit Lisp and...
  • 2.5 真与假 (Truth)

    2.5 真与假 (Truth) 2.5 真与假 (Truth) 在 Common Lisp 里,符号 t 是表示逻辑 真 的缺省值。与 nil 相同, t 也是对自身求值的。如果实参是一个列表,则函数 listp 返回 真 : > ( listp '(a b c)) T 函数的返回值将会被解释成逻辑 真 或逻辑 假 ...
  • The End of the Line

    The End of the Line The End of the Line As usual, you could keep working with this code to enhance it in various ways. One interesting avenue to pursue is to use the underlying...
  • 10. Numbers, Characters, and Strings

    10. Numbers, Characters, and Strings Copyright © 2003-2005, Peter Seibel 10. Numbers, Characters, and Strings While functions, variables, macros, and 25 special operators p...
  • Higher Math

    Higher Math Higher Math The functions you’ve seen so far are the beginning of the built-in mathematical functions. Lisp also supports logarithms: **LOG** ; exponentiation: **EX...
  • 备注

    备注 备注 viii (Notes viii) 备注 1 (Notes 1) 备注 3 (Notes 3) 备注 4 (Notes 4) 备注 5 (Notes 5) 备注 5-2 (Notes 5-2) 备注 12 (Notes 12) 备注 17 (Notes 17) 备注 26 (Notes 26) 备注 28 (Notes 28) ...
  • Chapter 5 总结 (Summary)

    Chapter 5 总结 (Summary) Chapter 5 总结 (Summary) Common Lisp 有三个基本的区块建构子: progn ;允许返回的 block ;以及允许 goto 的 tagbody 。很多内置的操作符隐含在区块里。 进入一个新的词法语境,概念上等同于函数调用。 Common Lisp 提供了适合不同情...
  • 第七章:输入与输出

    第七章:输入与输出 第七章:输入与输出 Common Lisp 有着威力强大的 I/O 工具。针对输入以及一些普遍读取字符的函数,我们有 read ,包含了一个完整的解析器 (parser)。针对输出以及一些普遍写出字符的函数,我们有 format ,它自己几乎就是一个语言。本章介绍了所有基本的概念。 Common Lisp 有两种流 (str...