正如序言中作者所说,此书就是为了教会读者思考和理解递归。而选择scheme这门语言作为载体,无非因为递归是Scheme这门语言基本而自然的计算机制。这本书独特的地方在于全书使用的是一问一答的对话形式,一定程度上展示了非线性的思考过程,与上来直接堆砌语法和定义的书籍大不相同,这种形式对于初学者而言无疑 ...
分类:
其他好文 时间:
2019-10-06 20:49:05
阅读次数:
115
课上内容(Lesson) 词汇(Key Word ) OL Office Lady :白领丽人 employee n.雇员 employer n. 雇主,雇佣者 assistant n.助手 sales reps 销售代表,推销员 rep: representative 的缩写。 代表 /?repr ...
分类:
其他好文 时间:
2019-10-06 11:36:54
阅读次数:
117
常见文本编码格式:UTF-8、UTF-16、UTF-32、ANSCII BOM 是 Byte Order Mark 的简称,即字节序标记。用于标记文本流: 表示文本流的字节顺序,是小端序(little-endian)还是大端序(big-endian); 表示文本流是 Unicode 字符; 表示文本 ...
分类:
编程语言 时间:
2019-10-04 15:27:27
阅读次数:
120
What are some disciplines for using multiple inheritance? M.I. rule of thumb #1: Use inheritance only if doing so will remove if / switch statements f ...
分类:
其他好文 时间:
2019-10-03 01:02:24
阅读次数:
99
术语“little endian(小端)”和“big endian(大端)”出自Jonathan Swift的《格列佛游记》(Gulliver's Trabels)一书,其中交战的两个派别无法就应该从哪一端(小端还是大端)打开一个半熟的鸡蛋打成一致。就像鸡蛋的问题一样,选择何种字节顺序没有技术上的理 ...
分类:
其他好文 时间:
2019-10-02 00:48:24
阅读次数:
101
mysql select prod_id,prod_price,prod_name from products where vend_id=1003 and prod_price =10; 查询结果是: prod_name | prod_price bird | 13 bold | 14 ayrd ...
分类:
其他好文 时间:
2019-09-30 16:49:17
阅读次数:
108
1、前言 BGP工作模式: bgp工作模式和flannel的host gw模式几乎一样; bird是bgd的客户端,与集群中其它节点的bird进行通信,以便于交换各自的路由信息; 随着节点数量N的增加,这些路由规则将会以指数级的规模快速增长,给集群本身网络带来巨大压力,官方建议小于100个节点; 限 ...
分类:
其他好文 时间:
2019-09-29 09:51:55
阅读次数:
242
Put as much as you can in the .c and as little as possible in the .h. The includes in the .c are only included when that one file is compiled, but the ...
分类:
其他好文 时间:
2019-09-28 20:29:54
阅读次数:
87
原文转至:https://dzone.com/articles/what-servlet-container In this post, I write a little bit about the basic ideas of web server, Servlet container and i ...
分类:
其他好文 时间:
2019-09-27 10:45:11
阅读次数:
87
Scala快速入门(三)——类与对象 一、类 这边类的模板如下,和Java很像 遇到不确定的成员属性,最好不要赋值null,可赋值一个下划线,需要标明类型。下划线Int型代表0,Double代表0.0,boolean代表false,对象代表null,这样解决所有问题。 改进后: 二、创建对象和方法 ...
分类:
其他好文 时间:
2019-09-26 13:23:23
阅读次数:
71