<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Java10 on Devops Monk</title><link>https://devops-monk.com/tags/java10/</link><description>Recent content in Java10 on Devops Monk</description><generator>Hugo</generator><language>en-us</language><lastBuildDate>Mon, 04 May 2026 00:00:00 +0000</lastBuildDate><atom:link href="https://devops-monk.com/tags/java10/index.xml" rel="self" type="application/rss+xml"/><item><title>Java 11 Overview: The Road from Java 8 Through Java 9, 10, to LTS</title><link>https://devops-monk.com/tutorials/java11/java11-overview/</link><pubDate>Mon, 04 May 2026 00:00:00 +0000</pubDate><guid>https://devops-monk.com/tutorials/java11/java11-overview/</guid><description>Why Java 11 Matters Java 8 was released in March 2014. It dominated enterprise Java for nearly a decade, but it misses a decade&amp;rsquo;s worth of language improvements, API modernisation, JVM advances, and security hardening. Java 11 (September 2018) is the first Long-Term Support release after Java 8, and it packages three releases of evolution into a single supported baseline.
For most teams the question is not whether to upgrade, but how.</description></item><item><title>var Keyword (JEP 286, 323): Local Variable Type Inference</title><link>https://devops-monk.com/tutorials/java11/var-keyword/</link><pubDate>Mon, 04 May 2026 00:00:00 +0000</pubDate><guid>https://devops-monk.com/tutorials/java11/var-keyword/</guid><description>What var Does var is a reserved type name (not a keyword) introduced in Java 10 (JEP 286). It instructs the compiler to infer the type of a local variable from its initialiser. The inferred type is fixed at compile time — var does not make Java dynamically typed.
// Before var ArrayList&amp;lt;String&amp;gt; names = new ArrayList&amp;lt;String&amp;gt;(); Map&amp;lt;String, List&amp;lt;Integer&amp;gt;&amp;gt; scores = new HashMap&amp;lt;String, List&amp;lt;Integer&amp;gt;&amp;gt;(); // With var var names = new ArrayList&amp;lt;String&amp;gt;(); var scores = new HashMap&amp;lt;String, List&amp;lt;Integer&amp;gt;&amp;gt;(); After compilation, both forms produce identical bytecode.</description></item></channel></rss>