The term Java Concurrency is commonly used to refer to topics related to Java multithreading, concurrency, synchronization, volatile variables, the Java memo... (more…)
Read more »
Splitting a Strings is common operation. This short tutorial will show some of the ways to complete is operation. (more…)
Read more »
Java is a safe programming language and prevents programmer
from doing a lot of stupid mistakes, most of which based on memory management.
But, there is a way to do such mistakes intentionally, using Unsafe class.
Read more »
In general, a URL can be broken into several parts. Consider the
following example:
http://www.example.com/docs/resource1.html
(more…)
Read more »
Java type inference won't support differentiation of mutable vs immutable variables due to lack of consensus within the community regarding how this should be implemented, recent communication shows. Also, to prevent a long debate about corner cases, a nu...
Read more »