Classic Computer Science Problems in Java Is Published

I am pleased to announce that my fourth book, Classic Computer Science Problems in Java, has been published. It is now available for purchase from the publisher’s website. As Manning’s deal of the day, the book is available today (January 5, 2021) for 50%… Read more

Similar

When to use var in Java 10

Java 10 officially introduced the var keyword to declare the local variable without typing the type information. Java developers have needed to keep typing the class name explicitly for a long time. (more…)

Read more »

Java Loops

Java loops are used to repeat the execution of a statement or block of statements while the provided condition returns true. (more…)

Read more »