Java, No Tears
Preface
This book teaches students how to program in Java with small, runnable examples. The main examples target JDK 25, the current long-term support baseline. To follow along and execute the code samples, you will need Docker installed. The Docker container is located on Docker Hub. After you have installed Docker, you may run the container as follows.
docker run -it \
-p 8888:8888 \
oneoffcoder/book-java-intro
Note that this Docker container has Jupyter Lab running on port 8888. You may access Jupyter Lab at http://localhost:8888 when the Docker container is running.
The diagram below summarizes the learning path through the Java material, starting with setup and syntax before moving into object-oriented design, project workflow, libraries, runtime behavior, modern idioms, and practice.
That roadmap is useful when you are skimming the book: the early chapters establish the language itself, the middle chapters focus on modeling and project structure, and the later chapters show how Java code behaves in larger, real programs.
Start Here
Core Syntax
Object-Oriented Java
Project Workflow
Libraries and Runtime
Modern Java
Optional Tools
About
One-Off Coder is an educational, service and product company. Please visit us online to discover how we may help you achieve life-long success in your personal coding career or with your company’s business goals and objectives.
Copyright
Cite this book as follows.:
@misc{oneoffcoder_java_intro_2019,
title={Java, No Tears},
url={https://learn-java.oneoffcoder.com},
author={One-Off Coder},
year={2019},
month={Oct}}