【试读】Practical Common Lisp (中英文对照版)
首页
白天
夜间
下载
阅读记录
书签管理
我的书签
添加书签
移除书签
编辑文档
Lather, Rinse, Repeat: A Tour of the REPL(REPL 简介)
来源 1
浏览
692
扫码
打印
2020-12-11 21:59:34
Lather, Rinse, Repeat: A Tour of the REPL(REPL 简介)
上一篇:
下一篇:
发布点评
Object Reorientation: Generic Functions(重新审视面向对象:广义函数)
Generic Functions and Classes(广义函数和类)
Generic Functions and Methods(广义函数和方法)
DEFGENERIC(定义广义函数)
Method Combination(方法组合)
DEFMETHOD(定义方法)
Syntax and Semantics(语法和语义)
What’s with All the Parentheses?(括号里都可以有什么)
Macros(宏)
Function Calls(函数调用)
Special Operators(特别操作符)
Truth, Falsehood, and Equality(真、假和等价)
Formatting Lisp Code(格式化 Lisp 代码)
Breaking Open the Black Box(打开黑箱)
S-expressions(S-表达式)
S-expressions As Lisp Forms(作为 Lisp 形式的 S-表达式)
They Called It LISP for a Reason: List Processing(LISP 名字的由来:列表处理)
Mapping(映射)
Combining Recycling with Shared Structure(组合回收性函数和共享结构)
List-Manipulation Functions(列表处理函数)
Other Structures(其他结构)
Functional Programming and Lists(函数式编程和列表)
“There Is No List”(“没有列表”)
“Destructive” Operations(“破坏性”操作)
Introduction: Why Lisp?(绪论:为什么是 Lisp?)
Who This Book Is For(本书面向的读者)
Why Lisp?(为什么是 Lisp?)
Where It Began(Lisp 的诞生)
But I learned Lisp Once, And IT Wasn’t Like What You’re Describing(但我曾经学过 Lisp,可是跟你所描述的不太一样)
Practical: A Simple Database(实践:一个简单的数据库)
Filling CDs(录入 CD)
Removing Duplication and Winning Big(消除重复,获益良多)
Improving the User Interaction(改进用户交互)
Updating Existing Records—Another Use for WHERE(更新已有的记录——WHERE 再战江湖)
Querying the Database(查询数据库)
CDs and Records(CD 和记录)
Saving and Loading the Database(保存和加载数据库)
Looking at the Database Contents(查看数据库的内容)
Wrapping Up(总结)
Files and File I/O(文件和文件 I/O)
Closing Files(关闭文件)
Bulk Reads(批量读取)
Constructing New Pathnames(构造新路径名)
Two Representations of Directory Names(目录名的两种表示方法)
Other Kinds of I/O(其他类型的 I/O)
How Pathnames Represent Filenames(路径名如何表示文件名)
Filenames(文件名)
How We Got Here(进化历程)
File Output(文件输出)
Interacting with the File System(与文件系统交互)
Reading Binary Data(读取二进制数据)
Reading File Data(读写文件数据)
Beyond Lists: Other Uses for Cons Cells(超越列表:点对单元的其他用法)
Lookup Tables: Alists and Plists(查找表:关联表和属性表)
DESTRUCTURING-BIND
Trees(树)
Sets(集合)
Practical: Building a Unit Test Framework(实践:构建一个单元测试框架)
Refactoring(重构)
Better Result Reporting(更好的结果输出)
A Hierarchy of Tests(测试的层次体系)
An Abstraction Emerges(抽象诞生)
Two First Tries(两个最初的尝试)
Wrapping Up(总结)
Fixing the Return Value(修复返回值)
Lather, Rinse, Repeat: A Tour of the REPL(REPL 简介)
Free Your Mind: Interactive Programming(放开思想:交互式编程)
Experimenting in the REPL(体验 REPL)
Getting Up and Running with Lisp in a Box(安装和运行 Lisp-in-a-Box)
Saving Your Work(保存工作成果)
“Hello, World,” Lisp Style(Lisp 风格的 “Hello, World”)
Choosing a Lisp Implementation(选择一个 Lisp 实现)
Practical: A Portable Pathname Library(实践:可移植路径名库)
The API(应用程序接口)
*FEATURES* and Read-Time Conditionalization(*FEATURES* 和读取期条件化)
Packaging the Library(给库打包)
Testing a File’s Existence(测试文件存在)
Walking a Directory Tree(遍历一个目录树)
Listing a Directory(列目录)
Variables(变量)
Dynamic, a.k.a. Special, Variables(动态(特别)变量)
Constants(常量)
Variable Basics(变量的基础知识)
Other Ways to Modify Places(其他修改位置的方式)
Generalized Assignment(广义赋值)
Lexical Variables and Closures(词法变量和闭包)
Assignment(赋值)
Numbers, Characters, and Strings(数字、字符和字符串)
Basic Math(初等数学)
Numeric Comparisons(数值比较)
Character Comparisons(字符比较)
Numbers(数值)
String Comparisons(字符串比较)
Characters(字符)
Strings(字符串)
Numeric Literals(字面数值)
Higher Math(高等数学)
Macros: Defining Your Own(定义你自己的宏)
Plugging the Leaks(堵住漏洞)
Generating the Expansion(生成展开式)
A Sample Macro: do-primes(一个示例宏:do-primes)
Macro Expansion Time vs. Runtime(宏展开期和运行期)
Macro Parameters(宏的形参)
The Story of Mac: A Just-So Story(Mac 的故事:只是一个故事)
Macro-Writing Macros(生成宏的宏)
Another classic macro-writing MACRO: ONCE-ONLY(另一个经典的用于编写宏的宏:ONCE-ONLY)
Beyond Simple Macros(更复杂的宏)
DEFMACRO(DEFMACRO 宏)
Collections(集合)
Subsequence Manipulations(操纵子序列)
Whole Sequence Manipulations(针对整个序列的操作)
Sorting and Merging(排序与合并)
Subtypes of Vector(向量的子类型)
Higher-Order Function Variants(高阶函数变体)
Vectors As Sequences(作为序列的向量)
Hash Tables(哈希表)
Vectors(向量)
Sequence Mapping Functions(序列映射函数)
Sequence Predicates(序列谓词)
Hash Table Iteration(哈希表迭代)
Sequence Iterating Functions(序列迭代函数)
Macros: Standard Control Constructs(宏:标准控制结构)
The Mighty LOOP(强大的 LOOP)
COND(COND 宏)
DO(DO 宏)
DOLIST and DOTIMES(DOLIST 和 DOTIMES 宏)
Looping(循环)
WHEN and UNLESS(WHEN 和 UNLESS)
AND, OR, and NOT(AND、OR 和 NOT)
Functions(函数)
Defining New Functions(定义新函数)
Rest Parameters(剩余形参)
Keyword Parameters(关键字形参)
Optional Parameters(可选形参)
Mixing Different Parameter Types(混合不同的形参类型)
Functions As Data, a.k.a. Higher-Order Functions(作为数据的函数——高阶函数)
Anonymous Functions(匿名函数)
Function Parameter Lists(函数形参列表)
Function Return Values(函数返回值)
暂无相关搜索结果!
本文档使用
全库网
构建
×
思维导图备注
×
文章二维码
手机扫一扫,轻松掌上读
×
文档下载
请下载您需要的格式的文档,随时随地,享受汲取知识的乐趣!
PDF
文档
EPUB
文档
MOBI
文档
×
书签列表
×
阅读记录
阅读进度:
0.00%
(
0/0
)
重置阅读进度