Home Java JavaBase what are java generics

what are java generics

Nov 11, 2019 am 11:40 AM
java Generics

what are java generics

What are java generics

Generics, that is, "parameterized types". When it comes to parameters, the most familiar thing is that there are formal parameters when defining a method, and then the actual parameters are passed when the method is called. So how do you understand parameterized types? As the name suggests, is to parameterize the type from the original specific type, similar to the variable parameters in the method. At this time, the type is also defined in parameter form (can be called a type parameter), and then Pass in the specific type (type argument) when using/calling.

The essence of generics is to parameterize types (the types of specific restrictions on formal parameters can be controlled through different types specified by generics without creating a new type). That is to say, during the use of generics, the data type of the operation is specified as a parameter. This parameter type can be used in classes, interfaces, and methods, and are called generic classes, generic interfaces, and generic methods respectively. (Recommended tutorial: java tutorial)

The role of generics:

The compiler checks whether the elements we put into the container meet the expectations of the generic container definition. We only need to tell the compiler what type of container this container is. The compiler automatically casts elements taken from the container.

After the intervention of generics, the programmer's focus has changed from 2 points to 1 point:

Define the type of container processing, so that the inspection of putting into the container and the transformation of taking out the container are all interchanged. It's done by the compiler.

Advantages:

1. Type safety

The main goal of generics is to improve the type safety of Java programs. By knowing the type restrictions of variables defined using generics, the compiler can verify type assumptions at a very high level. Without generics, these assumptions exist only in the minds of system developers.

Generics allow the compiler to enforce these additional type constraints by capturing this additional type information in the variable declaration. Type errors are now caught at compile time instead of being displayed as a ClassCastException at runtime. Moving type checking from runtime to compile time helps Java developers find errors earlier and more easily, and can improve program reliability.

2. Eliminate casts

A side benefit of generics is the elimination of many casts in the source code. This makes the code more readable and reduces the chance of errors. Although reducing casts can improve code that uses generic classes, there is a corresponding penalty when declaring generic variables. Using a generic variable once in a simple program does not reduce the code's popularity. But for large programs that use generic variables multiple times, the level of likes can be reduced cumulatively. Therefore, after generics eliminate forced type conversion, the code will be clearer and cleaner.

3. Higher operating efficiency

In non-generic programming, passing a single type as an Object will cause Boxing and Unboxing operations. This Both processes have significant overhead. After the introduction of generics, there is no need to perform Boxing and Unboxing operations, so the operating efficiency is relatively high. Especially in systems where collection operations are very frequent, the performance improvement brought by this feature is more obvious.

4. Potential performance gains

Generics bring the possibility of greater optimization. In the initial implementation of generics, the compiler inserts casts (without generics, Java system developers would specify these casts) into the generated bytecode. But the fact that more type information is available to the compiler opens up the possibility of optimizations in future versions of the JVM.

The above is the detailed content of what are java generics. 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)

Square Root in Java Square Root in Java Aug 30, 2024 pm 04:26 PM

Guide to Square Root in Java. Here we discuss how Square Root works in Java with example and its code implementation respectively.

Perfect Number in Java Perfect Number in Java Aug 30, 2024 pm 04:28 PM

Guide to Perfect Number in Java. Here we discuss the Definition, How to check Perfect number in Java?, examples with code implementation.

Random Number Generator in Java Random Number Generator in Java Aug 30, 2024 pm 04:27 PM

Guide to Random Number Generator in Java. Here we discuss Functions in Java with examples and two different Generators with ther examples.

Armstrong Number in Java Armstrong Number in Java Aug 30, 2024 pm 04:26 PM

Guide to the Armstrong Number in Java. Here we discuss an introduction to Armstrong's number in java along with some of the code.

Weka in Java Weka in Java Aug 30, 2024 pm 04:28 PM

Guide to Weka in Java. Here we discuss the Introduction, how to use weka java, the type of platform, and advantages with examples.

Smith Number in Java Smith Number in Java Aug 30, 2024 pm 04:28 PM

Guide to Smith Number in Java. Here we discuss the Definition, How to check smith number in Java? example with code implementation.

Java Spring Interview Questions Java Spring Interview Questions Aug 30, 2024 pm 04:29 PM

In this article, we have kept the most asked Java Spring Interview Questions with their detailed answers. So that you can crack the interview.

Break or return from Java 8 stream forEach? Break or return from Java 8 stream forEach? Feb 07, 2025 pm 12:09 PM

Java 8 introduces the Stream API, providing a powerful and expressive way to process data collections. However, a common question when using Stream is: How to break or return from a forEach operation? Traditional loops allow for early interruption or return, but Stream's forEach method does not directly support this method. This article will explain the reasons and explore alternative methods for implementing premature termination in Stream processing systems. Further reading: Java Stream API improvements Understand Stream forEach The forEach method is a terminal operation that performs one operation on each element in the Stream. Its design intention is

See all articles