Articles, Home

Getting Started With Java

This session provides an introduction to Java programming for developers who are new to the language and ecosystem. Java is one of the world’s most popular programming languages and remains in very high demand among professionals.

Articles, Home

Exit the Java EE Guardians; Enter the Jakarta EE Ambassadors — ADTmag

The Java EE Guardians, the all-volunteer organization formed in 2016 to secure the continuing evolution of enterprise Java, is considering a name change — and not just because ‘Java EE’ has become ‘Jakarta EE.’ With the platform now securely evolving under the stewardship of the Eclipse Foundation, the members don’t feel they have much to guard these days. In fact, they feel more like … ambassadors.

Articles, Home

JVM numeric types – Integer types

I am constantly amazed at how unfamiliar otherwise competent developers can be with numeric types. In a series of two blog posts I will explain what you need to know to understand the JVM’s numeric types. This first installment covers the integer types.

Articles, Home

Java 14: Seventh JEP proposed to target JDK 14 – JAXenter

Java 14, the third version since the last LTS release, is in development. Java 12 and Java 13 each came with a manageable number of new features; a system that, for Java 14, will probably not change. This is of course due to the new release cadence. Nevertheless, there are now 10 JEPs that are likely to be implemented for JDK 14 and the planning phase is not yet complete. What’s new is that a seventh JEP has now been proposed to target JDK 14: JEP 366.

Articles, Home

Java SortedSet

The Java SortedSet interface is a subtype of the Java Set interface. Implementations of the Java SortedSet interface keeps the elements sorted internally, so they can be iterated in that order.