Core Java
-
Java 8’s Method References Put Further Restrictions on Overloading
Method overloading has always been a topic with mixed feelings. We’ve blogged about it and the caveats that it introduces…
Read More » -
Is using Unsafe really about speed or functionality?
Overview Around 6 years ago, I started using a class which up to that point was just a curiosity sun.misc.Unsafe.…
Read More » -
Java Numeric Formatting: DecimalFormat
In the post Java Numeric Formatting, I described and demonstrated some of the useful instances provided by NumberFormat static methods…
Read More » -
Using Java 8 CompletableFuture and Rx-Java Observable
I wanted to explore a simple scatter-gather scenario using Java 8 CompletableFuture and using Rx-Java Observable. The scenario is simple…
Read More » -
Java SE 8 new features tour: Processing Collections with Streams API
Cleaner, readable, and powerful coding with Java SE 8 Streams….. In this article of the “Java SE 8 new features…
Read More » -
How and Why to Serialize Lambdas
Overview Serializing lambdas can be useful in a number of use cases such as persisting configuration, or as a visitor…
Read More » -
What the sun.misc.Unsafe Misery Teaches Us
Oracle will remove the internal sun.misc.Unsafe class in Java 9. While most people are probably rather indifferent regarding this change,…
Read More » -
JVM Buzzwords Java developers should understand
This article will share with you a few JVM “buzzwords” that are important for Java developers to understand and remember before performing any…
Read More » -
Java performance tutorial – How fast are the Java 8 streams?
In this JAX Magazine sneak preview, JAX London speaker Angelika Langer answers the most important question for anyone using Java…
Read More »