├── .github └── ISSUE_TEMPLATE │ └── contribution.md ├── .gitignore ├── LICENSE ├── README.md └── assets ├── LogoMark.png └── QQGroupQRCode.jpg /.github/ISSUE_TEMPLATE/contribution.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: 贡献力量 3 | about: 请描述你需要贡献的具体方面 4 | --- 5 | 6 | ## 我愿成为一名开源贡献者! 7 | 8 | ### 申请翻译/校对 9 | 10 | 11 | * 翻译 12 | 13 | ### 具体章节/标题 14 | 15 | 16 | * 示例章节 17 | * 示例标题1 18 | * 示例标题2 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Node rules: 2 | ## Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 3 | .grunt 4 | 5 | ## Dependency directory 6 | ## Commenting this out is preferred by some people, see 7 | ## https://docs.npmjs.com/misc/faq#should-i-check-my-node_modules-folder-into-git 8 | node_modules 9 | 10 | # Book build output 11 | _book 12 | 13 | # eBook build output 14 | *.epub 15 | *.mobi 16 | *.pdf 17 | 18 | # OSX junk files 19 | .DS_Store 20 | ._* 21 | */.DS_Store 22 | */._* 23 | 24 | # IDEA 25 | /.idea/* -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2018 LingCoder 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 《On Java 8》中文版 2 | 3 | ## 最新动态 4 | 5 | 《ON JAVA 中文版》终于上市了!推荐大家去京东购买:https://u.jd.com/ZwXIEMn ,新书首发,价格也比较美丽。 6 | 7 | 值得一提的是,为了与时俱进,作者也增补Java 11、Java17的相关内容,很多内容都非常贴合实际的开发场景,知识点非常细致,可以说覆盖了市面其他Java书90%的内容。 8 | 9 | 随书配套视频也很精良!4位行业内的顶级大佬为这本书录制了配套教程,尤其是对初学者十分友好,重点知识都帮你划出来了。 10 | 11 | —————————————— 12 | 13 | 图灵要出On Java 8的中文版了! 非常感谢大家长久以来对本项目的支持和贡献,出于对原作者的敬意和对版权尊重,本项目将于2021年2月26日起闭源。 之后,我将作为On Java 8的特邀审读嘉宾,继续贡献自己的一份力量! 14 | 15 | 想要继续关注本书出版进度,请访问图灵社区:https://www.ituring.com.cn/book/2935 16 | 17 | 18 | ## 一起交流 19 | 20 | 点击链接加入群聊【Java技术流群】247457782 Java技术交流( 点击图标即可加入 )
加群时请简单备注下来源或说明 21 | 22 |
23 | QQGroupQRCode 24 |
25 | 26 | 27 | ## 联系方式 28 | 29 | - E-mail : 30 | -------------------------------------------------------------------------------- /assets/LogoMark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingcoder/OnJava8/5a9fe94a8245063464eeb11ef3f35ee681d2a02a/assets/LogoMark.png -------------------------------------------------------------------------------- /assets/QQGroupQRCode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingcoder/OnJava8/5a9fe94a8245063464eeb11ef3f35ee681d2a02a/assets/QQGroupQRCode.jpg --------------------------------------------------------------------------------