摘要: //构造缓存函数var memoizer = function (memo, fundamental) { var shell = function (n) { var result = memo[n]; if (typeof result !== 'number'... 阅读全文
posted @ 2014-10-03 21:43 wuhn 阅读(108) 评论(0) 推荐(0) 编辑
摘要: Most built-in JavaScript types are constructors whose prototypes contain the methods and other properties that define their default behavior://(result... 阅读全文
posted @ 2014-10-03 21:15 wuhn 阅读(143) 评论(0) 推荐(0) 编辑
摘要: Functions are values, and we can manipulate function values in interesting ways.Currying allows us to produce a new function by combining a function a... 阅读全文
posted @ 2014-10-03 19:09 wuhn 阅读(244) 评论(0) 推荐(0) 编辑
摘要: package hanoi.com;public class Disc { private String name; private int level; public Disc(){ name = "disc"; level = 0; } ... 阅读全文
posted @ 2014-10-03 12:55 wuhn 阅读(458) 评论(0) 推荐(0) 编辑
摘要: 1.2 基本架设服务器流程1.2.1 网络服务器成功联机的分析 图 1.2-1、网络联机至服务器所需经过的各项环节上图显示的是:首先,客户端到服务器的网络要能够通,等到客户端到达服务器后,会先由服务器的防火墙判断该联机能否放行, 等到放行之后才能使用到服务器软件的功能。而该功能又得要通过 SEL... 阅读全文
posted @ 2014-10-03 03:10 wuhn 阅读(513) 评论(0) 推荐(0) 编辑
摘要: 1.1 前言: Linux 有啥功能1.1.1 只想用 Linux 架设服务器需要啥能力?Linux 最强大的功能是网络功能! 1.1.2 架设服务器难不难呢?基础网络的基本概念,以方便进行联网与设定及除错;熟悉操作系统的简易操作:包括登录分析、账号管理、文书编辑器的使用等等的技巧;信息安全方面:... 阅读全文
posted @ 2014-10-03 02:54 wuhn 阅读(269) 评论(0) 推荐(0) 编辑