Oracle´s Java 25th Anniversary Event

Together with Oracle Java experts and the Java community, we cordially invite you to join us for a very special online event to hear our personal stories, experiences, and ideas that add to and enrich the ongoing Java story. Read more

Similar

Java Arrays Class

Java.util package provides a Arrays class which contains a static factory that allows arrays to be viewed as lists. The class contains various methods for manipulating arrays like sorting and searching. The methods in this class throw a NullPointerExcepti... (more…)

Read more »

Java Magic. Part 4: Sun.misc.Unsafe

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 »