🌐
Oracle
docs.oracle.com › en › java › javase › 11 › docs › api › java.base › java › lang › Class.html
Class (Java SE 11 & JDK 11 )
January 20, 2026 - Instances of the class Class represent classes and interfaces in a running Java application. An enum type is a kind of class and an annotation type is a kind of interface. Every array also belongs to a class that is reflected as a Class object that is shared by all arrays with the same element ...
🌐
Oracle
docs.oracle.com › en › java › javase › 11 › docs › api › java.base › java › lang › package-summary.html
java.lang (Java SE 11 & JDK 11 )
April 29, 2019 - Classes ClassLoader, Process, ProcessBuilder, Runtime, SecurityManager, and System provide "system operations" that manage the dynamic loading of classes, creation of external processes, host environment inquiries such as the time of day, and enforcement of security policies.
🌐
Skillsoft
skillsoft.com › home › java se 11: objects & classes
Java SE 11: Objects & Classes - Java - BEGINNER - Skillsoft
Create a class that implements a constructor in java · Declare methods that have parameters in java · Implement methods that return values of a specified return type in java · Create methods that make use of method overloading in java · Distinguish between local and instance variables in java · Create overloaded methods that return values to the caller in java · 1. Introduction to Objects · 3m 11s ·
🌐
Oracle
docs.oracle.com › en › java › javase › 11 › docs › api › java.base › java › util › package-summary.html
java.util (Java SE 11 & JDK 11 )
January 20, 2026 - Contains the collections framework, some internationalization support classes, a service loader, properties, random number generation, string parsing and scanning classes, base64 encoding and decoding, a bit array, and several miscellaneous utility classes.
🌐
Wikipedia
en.wikipedia.org › wiki › Java_version_history
Java version history - Wikipedia
5 days ago - Support for Oracle's Solaris operating system (and SPARC CPUs) is dropped (while still available in e.g. Java 11). The Nashorn JavaScript Engine is removed. Also removed some root CA certificates. JEP 339: Edwards-Curve Digital Signature Algorithm (EdDSA) ... JEP 360 Sealed Classes adds sealed classes and interfaces that restrict which other classes or interfaces may extend or implement them.
🌐
Baeldung
baeldung.com › home › java › core java › new features in java 11
New Features in Java 11 | Baeldung
January 16, 2024 - Java 11 adds a few new methods to the String class: isBlank, lines, strip, stripLeading, stripTrailing, and repeat.
🌐
Oracle
docs.oracle.com › en › java › javase › 11 › docs › api › java.base › java › lang › Object.html
Object (Java SE 11 & JDK 11 )
January 20, 2026 - The Class object that represents the runtime class of this object. ... Returns a hash code value for the object. This method is supported for the benefit of hash tables such as those provided by HashMap. ... Whenever it is invoked on the same object more than once during an execution of a Java ...
🌐
Mkyong
mkyong.com › home › java › what is new in java 11
What is new in Java 11 - Mkyong.com
March 17, 2021 - If we compile the above class, it will generate two classes, Alphabet and Alphabet$A, even a nested class is a typical class with a unique name. The JVM access rule will not allow private access within different classes. However, Java allowed private access within nest members, so the Java compiler creates a bridge method access$000 to apply on the JVM access rule.
🌐
Java Almanac
javaalmanac.io › bytecode › versions
Class File Versions - javaalmanac.io
The following table lists class file versions for each JDK release.
Find elsewhere
🌐
Oracle
docs.oracle.com › en › java › javase › 11 › docs › api › java.base › module-summary.html
java.base (Java SE 11 & JDK 11 )
January 20, 2026 - Defines the foundational APIs of the Java SE Platform. ... The JDK implementation of this module provides an implementation of the jrt file system provider to enumerate and read the class and resource files in a run-time image.
🌐
uCertify
ucertify.com › p › java-basic.html
Introduction to Java 11 | Learn Programming Course Online -uCertify
The Java Class Library · Summary · 11 · Swing Features · Summary · 12 · Basic Interface Layout · Mixing Layout Managers · Card Layout · Summary · 13 · Event Listeners · Working with Methods · Summary · 14 · The Graphics2D Class · Drawing Text ·
🌐
Oracle
docs.oracle.com › en › java › javase › 12 › docs › api › java.base › java › lang › Class.html
Class (Java SE 12 & JDK 12 )
Instances of the class Class represent classes and interfaces in a running Java application. An enum type is a kind of class and an annotation type is a kind of interface. Every array also belongs to a class that is reflected as a Class object that is shared by all arrays with the same element ...
🌐
DigitalOcean
digitalocean.com › community › tutorials › java-11-features
Java 11 Features | DigitalOcean
4 days ago - Let’s discuss the new features introduced with Java 11 from the JEP Process. One major change is that you don’t need to compile the java source file with javac tool first. You can directly run the file with java command and it implicitly compiles. This feature comes under JEP 330. Following is a sneak peek at the new methods of Java String class introduced in Java 11:
🌐
Tutorialspoint
tutorialspoint.com › java › java_quick_guide.htm
Java 11 - Quick Guide
April 19, 2020 - When we consider a Java program, it can be defined as a collection of objects that communicate via invoking each other's methods. Let us now briefly look into what do class, object, methods, and instance variables mean.
🌐
Udemy
udemy.com › development
Java 11 For Complete Beginners
April 19, 2020 - Final Classes1:35 · The Garbage Collector4:02 · 27 more sections · Understand basic computer use: installing programs, opening files, etc. This course teaches you computer programming in the Java language from scratch. I'll be typing all the source code in front of your eyes and we'll be using Java version 11-12, taking advantage of many features that have been added to Java over the past few years -- including streams, method references and lambda expressions.
Rating: 4.5 ​ - ​ 1.57K votes
🌐
DZone
dzone.com › coding › java › 90 new features and apis in jdk 11 (part 1)
90 New Features and APIs in JDK 11 (Part 1)
January 20, 2026 - A lot of the new APIs in JDK 11 result from the HTTP client module now being part of the standard, as well as the inclusion of Flight Recorder. For a complete list of API changes, I refer the reader to the excellent comparison of different JDK versions produced by Gunnar Morling, which is available on Github. What I list here are all the new methods other than those in the java.net.http and jdk.jfr modules. I’ve also not listed the new methods and classes in the java.security modules, which are pretty specific to the changes of JEP 324 and JEP 329 (there are six new classes and eight new methods).
🌐
Medium
medium.com › javaguides › exploring-new-features-in-java-11-and-17-records-sealed-classes-and-more-85323e17d446
Exploring New Features in Java 11 and 17: Records, Sealed Classes, and More! | by Anshulneema | JavaGuides | Medium
December 11, 2025 - Welcome to our deep dive into the most significant new features introduced in Java 11 and Java 17. This article will explore the enhancements that have made these versions stand out, including the introduction of Records and Sealed Classes.