How we got the [Java] generics we have

Before we can talk about where generics are going, we first have to talk about where they are, and how they got there. This document will focus primarily on how we arrived at the generics we have now, and why, as a means of setting the groundwork for how … Read more

Similar

Recent Innovations in the Java Platform

In this eMag we want to showcase some of the smaller Java features that have been delivered and reached their final form in recent releases. Language evolution comes in both large and small packages (and sometimes the smaller ones are really stepping ston... (more…)

Read more »

The “Split Strings” Challenge Using Java

The challenge Complete the solution so that it splits the string into pairs of two characters. If the string contains an odd number of characters then it should replace the missing second character of the final pair with an underscore (‘_’). Examples: Tes... (more…)

Read more »