# cleancode-book **Repository Path**: xinspace/cleancode-book ## Basic Information - **Project Name**: cleancode-book - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-08-21 - **Last Updated**: 2021-08-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Clean-Code-zh 《代码整洁之道》部分中文翻译 可能来自于 [https://github.com/gdut-yy](https://github.com/gdut-yy),目前已经被删除,Fork维护。 在线阅读:[https://iszhaoxg.github.io/cleancode-book/](https://iszhaoxg.github.io/cleancode-book/) ## 前言 ## Index - [第 1 章 整洁代码](docs/ch1.md) - [第 2 章 有意义的命名](docs/ch2.md) - [第 3 章 函数](docs/ch3.md) - [第 4 章 注释](docs/ch4.md) - [第 5 章 格式](docs/ch5.md) - [第 6 章 对象和数据结构](docs/ch6.md) - [第 7 章 错误处理](docs/ch7.md) - [第 8 章 边界](docs/ch8.md) - [第 9 章 单元测试](docs/ch9.md) - [第 10 章 类](docs/ch10.md) - [第 11 章 系统](docs/ch11.md) - [第 12 章 迭进](docs/ch12.md) - [第 13 章 并发编程](docs/ch13.md) - [第 14 章 逐步改进](docs/ch14.md) - [第 15 章 JUnit 内幕](docs/ch15.md) - [第 16 章 重构 SerialDate](docs/ch16.md) - [第 17 章 味道与启发](docs/ch17.md) - [附录 A 并发编程 II](docs/apA.md) ## 本地开发 & 阅读 本项目基于 vuepress 进行开发,以提供比 github mardown 更佳的阅读体验 依赖于 `node.js`、`yarn`、`vuepress` 等环境 ```sh # vuepress yarn add -D vuepress # 本地开发 git clone https://github.com/iszhaoxg/cleancode-book.git cd cleancode-book/ yarn docs:dev # 本地阅读 http://localhost:8080/cleancode-book/ ```