当前位置:网站首页 > Java基础 > 正文

java语言程序设计基础篇原书第八版



来源:LingCoder/OnJava8(https://github.com/LingCoder/OnJava8)

  • 主译: LingCoder(https://github.com/LingCoder)
  • 参译: LortSir(https://github.com/LortSir)
  • 校对:nickChenyx(https://github.com/nickChenyx)

E-mail: lingcoder@gmail.com

  • 本书原作者为 [美] Bruce Eckel,即(Thinking in Java 4th Edition,2006)的作者。
  • 本书是事实上的 Thinking in Java 5th Edition(On Java 8,2017)。
  • Thinking in Java java语言程序设计基础篇原书第八版 4th Edition 基于 JAVA 5 版本;On Java 8 基于 JAVA 8 版本。

翻译说明

  1. 本书排版布局和翻译风格上参考阮一峰老师的 中文技术文档的写作规范(https://github.com/ruanyf/document-style-guide)
  2. 采用第一人称叙述。
  3. 由于中英行文差异,完全的逐字逐句翻译会很冗余啰嗦。所以本人在翻译过程中,去除了部分主题无关内容、重复描写。
  4. 译者在翻译中同时参考了谷歌、百度、有道翻译的译文以及《Java编程思想》第四版中文版的部分内容(对其翻译死板,生造名词,语言精炼度差问题进行规避和改正)。最后结合译者自己的理解进行本地化,尽量做到专业和言简意赅,方便大家更好的理解学习。
  5. 由于译者个人能力、时间有限,如有翻译错误和笔误的地方,还请大家批评指正!

目录及翻译进度

  • 前言(https://github.com/LingCoder/OnJava8/tree/master/docs/book/00-Preface.md) √
  • 简介(https://github.com/LingCoder/OnJava8/tree/master/docs/book/00-Introduction.md) √
  • 第一章 对象的概念(https://github.com/LingCoder/OnJava8/tree/master/docs/book/01-What-is-an-Object.md) √
  • 第二章 安装Java和本书用例(https://github.com/LingCoder/OnJava8/tree/master/docs/book/02-Installing-Java-and-the-Book-Examples.md) √
  • 第三章 万物皆对象(https://github.com/LingCoder/OnJava8/tree/master/docs/book/03-Objects-Everywhere.md) √
  • 第四章 运算符(https://github.com/LingCoder/OnJava8/tree/master/docs/book/04-Operators.md) √
  • 第五章 控制流(https://github.com/LingCoder/OnJava8/tree/master/docs/book/05-Control-Flow.md) √
  • 第六章 初始化和清理(https://github.com/LingCoder/OnJava8/tree/master/docs/book/06-Housekeeping.md)
  • 第七章 封装(https://github.com/LingCoder/OnJava8/tree/master/docs/book/07-Implementation-Hiding.md)
  • 第八章 复用(https://github.com/LingCoder/OnJava8/tree/master/docs/book/08-Reuse.md)
  • 第九章 多态(https://github.com/LingCoder/OnJava8/tree/master/docs/book/09-Polymorphism.md)
  • 第十章 接口(https://github.com/LingCoder/OnJava8/tree/master/docs/book/10-Interfaces.md)
  • 第十一章 内部类(https://github.com/LingCoder/OnJava8/tree/master/docs/book/11-Inner-Classes.md)
  • 第十二章 集合(https://github.com/LingCoder/OnJava8/tree/master/docs/book/12-Collections.md)
  • 第十三章 函数式编程(https://github.com/LingCoder/OnJava8/tree/master/docs/book/13-Functional-Programming.md) √
  • 第十四章 流式编程(https://github.com/LingCoder/OnJava8/tree/master/docs/book/14-Streams.md)
  • 第十五章 异常(https://github.com/LingCoder/OnJava8/tree/master/docs/book/15-Exceptions.md)
  • 第十六章 代码校验(https://github.com/LingCoder/OnJava8/tree/master/docs/book/16-Validating-Your-Code.md)
  • 第十七章 文件(https://github.com/LingCoder/OnJava8/tree/master/docs/book/17-Files.md)
  • 第十八章 字符串(https://github.com/LingCoder/OnJava8/tree/master/docs/book/18-Strings.md)
  • 第十九章 类型信息(https://github.com/LingCoder/OnJava8/tree/master/docs/book/19-Type-Information.md)
  • 第二十章 泛型(https://github.com/LingCoder/OnJava8/tree/master/docs/book/20-Generics.md)
  • 第二十一章 数组(https://github.com/LingCoder/OnJava8/tree/master/docs/book/21-Arrays.md)
  • 第二十二章 枚举(https://github.com/LingCoder/OnJava8/tree/master/docs/book/22-Enumerations.md)
  • 第二十三章 注解(https://github.com/LingCoder/OnJava8/tree/master/docs/book/23-Annotations.md)
  • 第二十四章 并发编程(https://github.com/LingCoder/OnJava8/tree/master/docs/book/24-Concurrent-Programming.md)
  • 第二十五章 设计模式(https://github.com/LingCoder/OnJava8/tree/master/docs/book/25-Patterns.md)
  • 附录:补充(https://github.com/LingCoder/OnJava8/tree/master/docs/book/Appendix-Supplements.md)
  • 附录:编程指南(https://github.com/LingCoder/OnJava8/tree/master/docs/book/Appendix-Programming-Guidelines.md)
  • 附录:文档注释(https://github.com/LingCoder/OnJava8/tree/master/docs/book/Appendix-Javadoc.md)
  • 附录:对象传递和返回(https://github.com/LingCoder/OnJava8/tree/master/docs/book/Appendix-Passing-and-Returning-Objects.md)
  • 附录:流式IO(https://github.com/LingCoder/OnJava8/tree/master/docs/book/Appendix-IO-Streams.md)
  • 附录:标准IO(https://github.com/LingCoder/OnJava8/tree/master/docs/book/Appendix-Standard-IO.md)
  • 附录:新IO(https://github.com/LingCoder/OnJava8/tree/master/docs/book/Appendix-New-IO.md)
  • 附录:理解equals和hashCode方法(https://github.com/LingCoder/OnJava8/tree/master/docs/book/Appendix-Understanding-equals-and-hashCode.md)
  • 附录:集合主题(https://github.com/LingCoder/OnJava8/tree/master/docs/book/Appendix-Collection-Topics.md)
  • 附录:并发底层原理(https://github.com/LingCoder/OnJava8/tree/master/docs/book/Appendix-Low-Level-Concurrency.md)
  • 附录:数据压缩(https://github.com/LingCoder/OnJava8/tree/master/docs/book/Appendix-Data-Compression.md)
  • 附录:对象序列化(https://github.com/LingCoder/OnJava8/tree/master/docs/book/Appendix-Object-Serialization.md)
  • 附录:静态语言类型检查(https://github.com/LingCoder/OnJava8/tree/master/docs/book/Appendix-Benefits-and-Costs-of-Static-Type-Checking.md)
  • 附录:成为一名程序员(https://github.com/LingCoder/OnJava8/tree/master/docs/book/Appendix-Becoming-a-Programmer.md)

如何参与

如果你想对本书做出一些贡献的话
可以在阅读本书过程中帮忙校对,找 bug 错别字等等
可以提出专业方面的修改建议
可以把一些不尽人意的语句翻译的更好更有趣
对于以上各类建议,请以 issue 或 pr 的形式发送,我看到之后会尽快处理
使用 MarkDown 编辑器,md 语法格式进行文档翻译及排版工作
完成之后 PullRequest
如没问题的话,我会合并到主分支
如不熟悉 md 排版,可不必纠结,我会在合并 pr 时代为排版
如还有其它问题,欢迎发送 issue,谢谢~

交流方式

交流群:(https://shang..com/wpa/qunwpa?idkey=4cb8bdc26879e544a0e1cafefd5c0fa239b7c4f309c5f)

相关资源

Effective.Java.3rd.Edition 中文版(https://sjsdfg.github.io/effective-java-3rd-chinese/#/)

开源协议

本项目基于 MIT 协议开源。

  • 上一篇: Java项目基础
  • 下一篇: java多线程基础总结
  • 版权声明


    相关文章:

  • Java项目基础2024-11-03 19:10:03
  • 编程基础java中的输入和输出2024-11-03 19:10:03
  • 游戏编程基础java2024-11-03 19:10:03
  • java基础方法对象2024-11-03 19:10:03
  • java 开发基础知识2024-11-03 19:10:03
  • java多线程基础总结2024-11-03 19:10:03
  • java基础测试练习题2024-11-03 19:10:03
  • 人工智能基础java2024-11-03 19:10:03
  • java基础实战源码2024-11-03 19:10:03
  • Java基础数据类型的映射类2024-11-03 19:10:03