In the blog post ” Using Google’s Protocol Buffers with Java ,” I quoted Josh Bloch’s Third Edition of Effective Java , in which he wrote, …
Category: Articles
Top 10 Books of All-Time for Java Programmers – DZone Java
Here is a list of ten books that are helpful for Java programmers, teaching cleaner code, effective designs, improved performance, and object-oriented design.
Top 50 Basic Core Java Interview Questions with Answers
Blog about Programming, Design, Java, Tutorial, Examples, Interview Questions, Java 5, 6, 7, 8, 9 features, multithreading, Linux, UNIX and tips.
How to Write a C-like sizeof Function in Java – DZone Java
For those who come from a C background and are just beginning to learn Java, this tutorial helps new users use the sizeof function with helpful examples.
Design Patterns in Java – Concepts & Hands On Projects
Learn 26 Design Patterns with hands on projects in Java
Java 8 – Journey of for loop in Java, for(index) to forEach()
for loop has come a long way in Java 8 with new forEach() method in java.util.stream.Stream class. In this article, we will take a look…
Interesting Java Jersey and RxJava Finding – DZone Java
In the case of the @Context annotation, Jersey will inject a proxy object that uses a ThreadLocal. This tutorial explains how to maneuver around this error.
Java Memory Management – DZone Java
To optimize your Java apps, make sure you know how it manages memory, and how you can tweak it. This deep dive tackles heap memory and garbage collection.
Looking into Java’s Future: Empty Value Types
Although the promising Java value types are not imminent, I still enjoy nosing around occasionally i…
Oracle now requires a subscription to use Java SE
One-time licenses won’t be available for Java SE 8 or later, but separate support contracts also go away
Testing JavaEE With Servlet, JAX-RS, Batch, and Microprofile – DZone Java
This tutorial demonstrates the backward capability of Java EE and its ability to implement a new artifact using Microprofile API through file uploads and batch jobs.
100+ Data Structure and Algorithm Interview Questions Answers for Programmers
Blog about Programming, Design, Java, Tutorial, Examples, Interview Questions, Java 5, 6, 7, 8, 9 features, multithreading, Linux, UNIX and tips.
Java’s Magic Sauce – Azul Systems, Inc.
Right from the beginning, Java has contained internal APIs, not intended for general development use. Since JDK 1.4, sun.misc.Unsafe is probably the most notorious. What would Java be like, and how successful would it have been without this?
Git cheat sheet
In this Git cheat sheet, we explore the most useful and frequently used git commands. Print the pdf and stop forgetting how does git rebase or other commands work with this 1-page git cheat sheet.
How to write a C like Sizeof function in Java
If you have just started learning Java and came from C background then you might have noticed some difference between Java and C programmin…