10 Java Programming Books for Beginners & Advanced Programmers
Throughout my programming career, here are the books that have helped me in one way or another to improve as a developer in no particular order.
These books have different difficulty levels so take your time to read them. It will definitely take years to finish all of them.
Clean Code
by Robert C Martin
This is an excellent book for beginners to refresh and reinforce the knowledge you gained during college about patterns, practices, and principles of writing clean code.
* To fully understand this book, you must have good knowledge of the object-oriented paradigm (abstract classes, interface, polymorphism).
Design Patterns Element of Reusable Object-Oriented Design
by Gang of Four
This is a must-have book with content that you will be able to use as long as you do programming. This will provide you a solid foundation when designing a software system. I can't express enough how important this book is; I wish I had known it back in college.
Basically, there are 3 major categories of design patterns:
- Creational - how classes and objects are created or instantiated
- Structural - how classes and objects are organized to form a larger structure and new functionalities
- Behavioral - how objects communicate and behave with each other
by Doug Lea
Domain-Driven Design - Tackling Complexity in the Heart of Software
by Eric Evans
Introduction to Algorithms
by Thomas Cormen
Microservices Patterns With examples in Java
by Chris Richardson
Patterns of Enterprise Application Architecture
by Martin Fowler
Refactoring Improving the Design of Existing Code
by Martin Fowler
The Basic of User Experience Design
by Interaction Design Foundation
The Pragmatic Programmer
by Andrew Hunt
UML for Java Programmers
by Robert Martin
Post a Comment