Home Java javaTutorial What are the new features of jdk8

What are the new features of jdk8

Apr 24, 2019 pm 05:40 PM
jdk8 new features

New features in JDK 8 include: introducing Lambda expressions, providing Stream API, enabling client TLS 1.2, supporting AEAD algorithm, higher security, new Modena theme, new packages, etc.

What are the new features of jdk8

What's new in JDK 8

Java Platform, Standard Edition 8 is a feature-rich major release. This document summarizes the features and enhancements in Java SE 8, JDK 8, and Oracle's implementation of Java SE 8. Click a component name for a more detailed description of the component's enhancements.

Java Programming Language

  • Lambda expressions are a new language feature that has been introduced in this version. This feature allows you to treat functions as method parameters, or code as data. Using lambda expressions, you can more concisely represent instances of single-method interfaces (called functional interfaces).

  • Method references provide easy-to-understand lambda expressions for methods that already have names.

  • The default method allows new functionality to be added to the library's interfaces and ensures binary compatibility with code written for older versions of these interfaces.

  • Duplicate annotations support multiple applications of the same annotation type to the same statement or type usage.

  • Type annotations support applying annotations anywhere a type is used, not just declarations. When combined with the pluggable type system, this feature improves type checking of your code.

  • Improved type inference.

  • Method parameter reflection.

Collection

  • The new java.util.stream class in the package provides a Stream API that supports Streams of elements perform functional operations. The Stream API is integrated into the Collections API and can perform batch operations on collections, such as sequential or parallel map-reduce transformations.

  • Performance improvements for HashMap with key conflicts

Compact profile

Includes Java SE A predefined subset of the platform and supports applications that do not require the entire platform to be deployed and run on small devices.

Security

  • Client TLS 1.2 is enabled by default

  • New changes to AccessController.doPrivileged Body supports code asserting a subset of its permissions without preventing a full stack traversal to check for additional permissions

  • Stronger password-based encryption algorithm

  • JSSE server-side support for SSL/TLS Server Name Indication (SNI) extension

  • Support for AEAD algorithm: The SunJCE provider has been enhanced to support AES/GCM/NoPadding cipher implementations as well as GCM Algorithm parameters. The SunJSSE provider has also been enhanced to support AEAD mode-based cipher suites. See Oracle Provider Documentation, JEP 115.

  • Keystore enhancements, including new domain keystore type java.security.DomainLoadStoreParameter and new command option -importpassword

  • ## for the keytool utility
  • #SHA-224 Message Digest

  • Enhanced support for NSA Suite B encryption

  • Better support for high-entropy random numbers Generate

  • Added the java.security.cert.PKIXRevocationChecker class for configuring the revocation check of X.509 certificates

  • Applicable to Windows 64-bit PKCS11

  • New rcache type added to Kerberos 5 replay cache

  • Supports Kerberos 5 protocol translation and restricted delegation

  • Kerberos 5 weak encryption type is disabled by default

  • Unbound SASL for GSS-API/Kerberos 5 mechanism

  • SASL Service for Multiple Host Names

  • JNI Bridge to Native JGSS on Mac OS X

  • SunJSSE Provider Support for stronger temporary DH keys in

  • Support for server-side cipher suite preference customization in JSSE

JavaFX

  • The new Modena theme has been implemented in this version.

  • The new SwingNode class allows developers to embed Swing content into JavaFX applications. See the SwingNode javadoc and Embedding Swing content into JavaFX applications.

  • New UI controls include DatePicker and TreeTableView controls.

  • javafx.print package provides public classes for the JavaFX Printing API. See the javadoc for more information.

  • 3D graphics features now include 3D shapes, cameras, lights, subscenes, materials, picking, and anti-aliasing. New Shape3D (Box, Cylinder, MeshView and Sphere subclasses), SubScene, Material, PickResult, LightBase (AmbientLight and PointLight subclasses) and SceneAntialiasing API classes have been added to the JavaFX 3D graphics library. The Camera API class has also been updated in this release. See the related javadoc for the javafx.scene.shape.Shape3D, javafx.scene.SubScene, javafx.scene.paint.Material, javafx.scene.input.PickResult, and javafx.scene.SceneAntialiasing classes as well as the JavaFX 3D Graphics Getting Started documentation.

  • The WebView class contains new features and improvements. For more information about other HTML5 features, including web sockets, web workers, and web fonts, see HTML5 Supported Features.

  • Enhanced text support, including bidirectional text, complex text scripts (such as Thai and Hindi controls), and multi-line, multi-style text in text nodes.

  • This version adds support for Hi-DPI display.

  • CSS Styleable* classes have become public API. For more information, see the Javafx.css javadoc.

  • The new ScheduledService class allows automatic restart of services.

  • JavaFX is now available for the ARM platform. The JDK for ARM includes the base, graphics, and control components of JavaFX.

Tools

  • The Nashorn engine can be called through the jjs command.

  • java command is used to start JavaFX applications.

  • Rewritten the java man page.

  • Class files can be analyzed through the jdeps command line tool.

  • Java Management Extensions (JMX) supports remote access to diagnostic commands.

  • The jarsigner tool provides an option to request a signed timestamp from a Timestamp Authority (TSA).

Javac Tool

  • #The -parameters option of the javac command can be used to store formal parameter names and enable the reflection API to Retrieve formal parameter names.

  • The javac command now correctly implements the type rules for equality operators in Java Language Specification (JLS) section 15.21.

  • Thejavac tool now supports checking the content of javadoc comments, thus avoiding various problems in the files generated when running javadoc, such as invalid HTML or accessibility issues. This feature can be enabled via a new Xdoclint option. See the output when running "javac -X" for more details. This feature is also available in the javadoc tool and is enabled by default.

  • javac tool now supports generating native headers on demand. This eliminates the need to run the javah tool separately in the build pipeline. This feature can be enabled in javac using the new -h option, which specifies the directory to which header files are written. A header file will be generated for annotated constant fields for any class that has a native method or uses a new annotation of type java.lang.annotation.Native .

Javadoc Tool

  • The javadoc tool supports the new DocTree API, allowing you to treat Javadoc comments as abstract syntax trees to traverse.

  • The javadoc tool supports the new Javadoc Access API, which allows you to call Javadoc tools directly from your Java application without executing a new process. For more information, see the javadoc new features page.

  • The javadoc tool now supports checking the content of javadoc comments, thus avoiding various problems in the files generated when running javadoc, such as invalid HTML or accessibility issues. This feature is enabled by default and can be controlled with the new -Xdoclint option. See the output when running "javadoc -X" for more details. The javac tool also supports this feature, but it is not enabled by default.

Internationalization

  • Unicode enhancements, including support for Unicode 6.2.0

  • Using Unicode CLDR data and java.locale.providers system properties

  • New calendar and locale API

  • Support Custom resource bundles are installed as extensions

Deployment

  • ##It is now possible to use URLPermission to allow sandbox applets and Java Web Start apps connect back to the server that started them. SocketPermission is no longer granted.

  • The Permissions attribute is required in the JAR file manifest of the main JAR file at all security levels.

Date-Time Package

A set of new packages that provide a comprehensive date-time model.

Scripting

The Rhino Javascript engine has been replaced by the Nashorn JavaScript engine

Pack200

  • Pack200 supports constant pool entries and new bytecode introduced by JSR 292

  • JDK8 supports class file changes specified by JSR-292, JSR-308 and JSR-335

IO and NIO

  • New Solaris-oriented SelectorProvider implementation based on the Solaris event port mechanism. To use it, set the value of the system property java.nio.channels.spi.Selector to sun.nio.ch.EventPortSelectorProvider.

  • Reduce the size of the /jre/lib/charsets.jar file

  • Improved the performance of java.lang.String(byte[], *) constructor and java.lang.String.getBytes() method.

java.lang and java.util packages

  • Parallel array sorting

  • Standard encoding and decoding Base64

  • Unsigned arithmetic support

JDBC

  • Removed JDBC-ODBC Bridge.

  • JDBC 4.2 introduces new features.

Java DB

JDK 8 includes Java DB 10.10.

Network

  • The java.net.URLPermission class has been added.

  • In the java.net.HttpURLConnection class, if a security manager is installed, the call requesting to open the connection requires permissions.

Concurrency

  • Some new classes and interfaces have been added to the java.util.concurrent package.

  • Some new methods have been added to the java.util.concurrent.ConcurrentHashMap class to support aggregation operations based on new stream tools and lambda expressions.

  • The java.util.concurrent.atomic package has added new classes to support extensible and updatable variables.

  • Some new methods have been added to the java.util.concurrent.ForkJoinPool class to support universal pools.

  • The new java.util.concurrent.locks.StampedLock class provides a capability-based lock that can control read/write access through three modes.

Java XML - JAXP

HotSpot

  • New Hardware intrinsics to use Advanced Encryption Standard (AES). The UseAES and UseAESIntrinsics flags enable hardware-based AES intrinsics for Intel hardware. Hardware must be 2010 or newer Westmere hardware. For example, to enable hardware AES, use the following flags:

  • -XX: UseAES -XX: UseAESIntrinsics

  • To disable hardware AES, please use the following flags:

  • -XX:-UseAES -XX:-UseAESIntrinsics

  • Removed PermGen.

  • The bytecode instructions called by the method support the default methods in the Java programming language.

Java Mission Control 5.3 Release Notes

JDK 8 includes Java Mission Control 5.3.

The above is the detailed content of What are the new features of jdk8. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

PHP 8.3 released: new features at a glance PHP 8.3 released: new features at a glance Nov 27, 2023 pm 12:52 PM

PHP8.3 released: Overview of new features As technology continues to develop and needs change, programming languages ​​are constantly updated and improved. As a scripting language widely used in web development, PHP has been constantly improving to provide developers with more powerful and efficient tools. The recently released PHP 8.3 version brings many long-awaited new features and improvements. Let’s take a look at an overview of these new features. Initialization of non-null properties In past versions of PHP, if a class property was not explicitly assigned a value, its value

A guide to learn the new features of PHP8 and gain an in-depth understanding of the latest technology A guide to learn the new features of PHP8 and gain an in-depth understanding of the latest technology Dec 23, 2023 pm 01:16 PM

An in-depth analysis of the new features of PHP8 to help you master the latest technology. As time goes by, the PHP programming language has been constantly evolving and improving. The recently released PHP8 version provides developers with many exciting new features and improvements, bringing more convenience and efficiency to our development work. In this article, we will analyze the new features of PHP8 in depth and provide specific code examples to help you better master these latest technologies. JIT compiler PHP8 introduces JIT (Just-In-Time) compilation

New Redis extension introduced in PHP8.1 New Redis extension introduced in PHP8.1 Jul 07, 2023 pm 09:41 PM

The new Redis extension introduced in PHP8.1 With the rapid development of the Internet, a large amount of data needs to be stored and processed. In order to improve the efficiency and performance of data processing, caching has become an indispensable part. In PHP development, Redis, as a high-performance key-value storage system, is widely used in caching and data storage scenarios. In order to further improve the experience of using Redis in PHP, PHP8.1 introduces a new Redis extension. This article will introduce the new functions of this extension and provide

Interpretation of new features of Go language: making programming more efficient Interpretation of new features of Go language: making programming more efficient Mar 10, 2024 pm 12:27 PM

[Interpretation of new features of Go language: To make programming more efficient, specific code examples are needed] In recent years, Go language has attracted much attention in the field of software development, and its simple and efficient design concept has attracted more and more developers. As a statically typed programming language, Go language continues to introduce new features to improve development efficiency and simplify the code writing process. This article will provide an in-depth explanation of the latest features of the Go language and discuss how to experience the convenience brought by these new features through specific code examples. Modular development (GoModules) Go language from 1

An overview of the new features of CSS3: How to use CSS3 to achieve transition effects An overview of the new features of CSS3: How to use CSS3 to achieve transition effects Sep 09, 2023 am 11:27 AM

Overview of the new features of CSS3: How to use CSS3 to achieve transition effects CSS3 is the latest version of CSS. Among the many new features, the most interesting and practical one should be the transition effect. Transition effects can make our pages smoother and more beautiful during interaction, giving users a good visual experience. This article will introduce the basic usage of CSS3 transition effects, with corresponding code examples. transition-property attribute: Specify the CSS property transition effect that needs to be transitioned

What are the new features of php8 What are the new features of php8 Sep 25, 2023 pm 01:34 PM

New features of php8 include JIT compiler, type deduction, named parameters, union types, properties, error handling improvements, asynchronous programming support, new standard library functions and anonymous class extensions. Detailed introduction: 1. JIT compiler, PHP8 introduces the JIT compiler, which is an important performance improvement. The JIT compiler can compile and optimize some high-frequency execution codes in real time, thereby improving the running speed; 2. Type derivation , PHP8 introduces the type inference function, allowing developers to automatically deduce the type of variables when declaring variables, etc.

Overview of the new features of CSS3: How to use CSS3 to achieve horizontally centered layout Overview of the new features of CSS3: How to use CSS3 to achieve horizontally centered layout Sep 09, 2023 pm 04:09 PM

Overview of the new features of CSS3: How to use CSS3 to achieve horizontally centered layout In web design and layout, horizontally centered layout is a common requirement. In the past, we often used complex JavaScript or CSS tricks to achieve this. However, CSS3 introduced some new features that make horizontally centered layouts simpler and more flexible. This article will introduce some new features of CSS3 and provide some code examples to demonstrate how to use CSS3 to achieve horizontally centered layout. 1. Use flexbox to layout fle

What are the new features of go language? What are the new features of go language? Aug 24, 2023 pm 01:36 PM

The new features of go language are: 1. Go module, used to manage the dependencies of Go language projects; 2. Error handling, adding a new error type error, making error handling more flexible and concise; 3. Context package, used Used to transfer request range values ​​between goroutines; 4. Embedding, that is, one structure can be embedded in another structure; 5. Synchronization package, to better control the synchronization and communication between goroutines; 6. Error value, Better distinguish between different types of errors; 7. Generics allow developers to write more flexibly.

See all articles