Book
Clean Code
Robert C. Martin
Summary
ソフトウェア開発における「きれいなコード」の原則を解説。 命名規則、関数設計、エラーハンドリング等の実践的な技法を学べる。
Editor's Note
Best for intermediate developers first systematizing code discipline. A great pick once you've finished basic syntax and want criteria for readable code; it offers many principles, so choose what fits rather than applying all of them.
Target Readers
- プログラミング基礎を習得済みの開発者
- コード品質を改善したいエンジニア
Tags
Colophon
- Publisher
- KADOKAWA
- ISBN
- 978-4048930598
- Published
- Dec 2017
- List price
- ¥4,180incl. taxMay differ from the actual selling price on Amazon
Get this book
* The link above is an advertisement via Amazon Associates.Related Books
Prerequisites
- Recommended
スッキリわかるJava入門
中山清喬, 国本大悟
Reason: Once you can write basic Java syntax, the next step is to raise your sights from merely working code to code that is readable and easy to change. Clean Code provides principles for naming, function decomposition, and comments—building the sense of quality that is hard to acquire on your own.
- Recommended
The Art of Readable Code
Dustin Boswell, Trevor Foucher
Reason: After grasping the basics of readability such as naming and function decomposition, you move on to binding them into principles of why. Clean Code connects individual techniques into a coherent system of craftsmanship and design principles.
- Recommended
The Pragmatic Programmer
David Thomas, Andrew Hunt
Reason: After adopting the pragmatic mindset of keeping code healthy, you ground those attitudes in concrete quality standards at the function and class level. Clean Code systematizes what good code is through principles and worked examples.
Next Books
- Recommended
Java言語で学ぶデザインパターン入門
結城浩
Reason: Once you can write clean functions and classes, it's time to learn design patterns—named solutions to recurring design problems—through Java code. This book lets you experience the 23 GoF patterns in Java implementations, building a vocabulary of reusable designs and the ability to compose relationships between classes with clear intent.
- Recommended
リファクタリング
Martin Fowler
Reason: Once you know what good code looks like, you need techniques to safely move existing code toward that standard. Refactoring offers a systematic way to improve structure without changing behavior, guided by code smells.
- Recommended
テスト駆動開発
Kent Beck
Reason: To keep writing clean code, you need a foundation that lets you change it without fear. Test-driven development instills the discipline of growing clean, working code in small cycles, turning quality into a habit.
- Recommended
Clean Architecture
Robert C. Martin
Reason: Once quality at the function and class level is second nature, the next step is to design the direction of dependencies and boundaries across the whole system. Clean Architecture provides the principle of pushing details outward and keeping business rules at the core.
- Recommended
Domain-Driven Design: Tackling Complexity in the Heart of Software
Eric Evans
Reason: Once you have quality standards at the code level, you point that expressiveness toward the language of the domain. Meaningful names become a ubiquitous language that bridges business and code, making the model speakable in code.
- Related
Web API: The Good Parts
水野貴明
Reason: A sense for good code carries over from the inside of functions and classes to the design of the APIs you expose. The Clean Code principles of naming, consistency, and predictability extend naturally to URIs and response design—the 'public names' of an API.