摘要:
Mutable reduction: A mutable reduction operation accumulates input elements into a mutable result container, such as a Collection or StringBuilder, as 阅读全文
摘要:
目前停止阅读的书: Hibernate实战 Head First Servlets & JSP 其原因主要有: 书的内容过时,无法获得较大的收益。 中文翻译过烂,无法正常阅读。 内容过难,本人水平有限无法理解。 阅读全文
摘要:
Annotations are tags that you insert into your source code so that some tool can process them. The tools can operate on source level or they can proce 阅读全文
摘要:
No routine should exceed a page. Modularity' s advantages: Much easier to debug small routines than big ones Work simultaneously Places certain depend 阅读全文
摘要:
一个分布式系统无法再同一时间保持一致性、可用性以及针对分区故障的容错性。 应用程序的业务逻辑要与特定于应用程序的面向对象模型进行交互。运行时,应用程序会操作这些类的实例。 业务逻辑不是在数据库中执行的;它是在Java中实现并在应用层中执行的。这使得业务逻辑可以使用面向对象的概念,比如继承和多态。 两 阅读全文
摘要:
Four basic rules of recursion: Base cases Making progress Design rules: Assume that all recursive calls work. Compound Interest Rule: Never duplicate 阅读全文
摘要:
Lambda函数特点: 匿名——写得少想的多。 函数——lambda有参数列表、函数主体、返回类型,有可以抛出的异常列表。 传递——lambda表达式可作为参数传递给方法或存储在变量中。 简介 Lambda隐含return语句(可以显式地使用return)。 Lambda有三个部分(更多示例: http://www.cnblogs.com/Hu-Yan/p/7955550.html) 参数... 阅读全文
摘要:
使用git reflog命令,查看当前仓库的操作日志。在日志中找出 回溯历史之前的哈希值,通过 git reset --hard命令恢复到回溯历史前的状态。 只要不进行 Git 的 GC(Garbage Collection,垃圾回收), 就可以通过日志随意调取近期的历史状态。 哈希值只要输入 4 阅读全文
摘要:
Devices——hosts or end systems End systems are connected together by a network of communication links and packet switches. When one end system has data 阅读全文