首页 > 编程语言 >Generics in Java

Generics in Java

时间:2022-11-27 02:46:28浏览次数:36  
标签:Java String al Generics Test type class

https://www.geeksforgeeks.org/generics-in-java/

 

Generics means parameterized types. The idea is to allow type (Integer, String, … etc., and user-defined types) to be a parameter to methods, classes, and interfaces. Using Generics, it is possible to create classes that work with different data types. An entity such as class, interface, or method that operates on a parameterized type is a generic entity.

Why Generics?

The Object is the superclass of all other classes, and Object reference can refer to any object. These features lack type safety. Generics add that type of safety feature. We will discuss that type of safety feature in later examples.

 

Generics in Java are similar to templates in C++. For example, classes like HashSet, ArrayList, HashMap, etc., use generics very well. There are some fundamental differences between the two approaches to generic types. 

Types of Java Generics

Generic Method: Generic Java method takes a parameter and returns some value after performing a task. It is exactly like a normal function, however, a generic method has type parameters that are cited by actual type. This allows the generic method to be used in a more general way. The compiler takes care of the type of safety which enables programmers to code easily since they do not have to perform long, individual type castings.

  <iframe data-google-container-id="2" data-is-safeframe="true" data-load-complete="true" frameborder="0" height="250" id="google_ads_iframe_/27823234/GFG_Desktop_PostContent_336x280_0" marginheight="0" marginwidth="0" scrolling="no" src="https://d4d79206ade3ecff677681f5837205b2.safeframe.googlesyndication.com/safeframe/1-0-40/html/container.html" title="3rd party ad content" width="300"></iframe>

Generic Classes: A generic class is implemented exactly like a non-generic class. The only difference is that it contains a type parameter section. There can be more than one type of parameter, separated by a comma. The classes, which accept one or more parameters, ​are known as parameterized classes or parameterized types.

Generic Class 

Like C++, we use <> to specify parameter types in generic class creation. To create objects of a generic class, we use the following syntax. 

// To create an instance of generic class 
BaseType <Type> obj = new BaseType <Type>()

Note: In Parameter type we can not use primitives like ‘int’,’char’ or ‘double’.

  • Java
 
// Java program to show working of user defined // Generic classes    // We use < > to specify Parameter type class Test<T> {     // An object of type T is declared     T obj;     Test(T obj) { this.obj = obj; } // constructor     public T getObject() { return this.obj; } }    // Driver class to test above class Main {     public static void main(String[] args)     {         // instance of Integer type         Test<Integer> iObj = new Test<Integer>(15);         System.out.println(iObj.getObject());            // instance of String type         Test<String> sObj             = new Test<String>("GeeksForGeeks");         System.out.println(sObj.getObject());     } }
Output
15
GeeksForGeeks

We can also pass multiple Type parameters in Generic classes. 

  • Java
 
// Java program to show multiple // type parameters in Java Generics    // We use < > to specify Parameter type class Test<T, U> {     T obj1;  // An object of type T     U obj2;  // An object of type U        // constructor     Test(T obj1, U obj2)     {         this.obj1 = obj1;         this.obj2 = obj2;     }        // To print objects of T and U     public void print()     {         System.out.println(obj1);         System.out.println(obj2);     } }    // Driver class to test above class Main {     public static void main (String[] args)     {         Test <String, Integer> obj =             new Test<String, Integer>("GfG", 15);            obj.print();     } }
Output
GfG
15

Generic Functions: 

We can also write generic functions that can be called with different types of arguments based on the type of arguments passed to the generic method. The compiler handles each method.

  • Java
 
// Java program to show working of user defined // Generic functions    class Test {     // A Generic method example     static <T> void genericDisplay(T element)     {         System.out.println(element.getClass().getName()                            + " = " + element);     }        // Driver method     public static void main(String[] args)     {         // Calling generic method with Integer argument         genericDisplay(11);            // Calling generic method with String argument         genericDisplay("GeeksForGeeks");            // Calling generic method with double argument         genericDisplay(1.0);     } }
Output
java.lang.Integer = 11
java.lang.String = GeeksForGeeks
java.lang.Double = 1.0

Generics Work Only with Reference Types: 

When we declare an instance of a generic type, the type argument passed to the type parameter must be a reference type. We cannot use primitive data types like intchar.

<iframe data-google-container-id="3" data-is-safeframe="true" data-load-complete="true" frameborder="0" height="1" id="google_ads_iframe_/27823234/gfg_outstream_incontent_0" marginheight="0" marginwidth="0" scrolling="no" src="https://d4d79206ade3ecff677681f5837205b2.safeframe.googlesyndication.com/safeframe/1-0-40/html/container.html" title="3rd party ad content" width="1"></iframe>
Test<int> obj = new Test<int>(20); 

The above line results in a compile-time error that can be resolved using type wrappers to encapsulate a primitive type. 

But primitive type arrays can be passed to the type parameter because arrays are reference types.

ArrayList<int[]> a = new ArrayList<>();

Generic Types Differ Based on Their Type Arguments: 

Consider the following Java code.

  • Java
 
// Java program to show working // of user-defined Generic classes    // We use < > to specify Parameter type class Test<T> {     // An object of type T is declared     T obj;     Test(T obj) { this.obj = obj; } // constructor     public T getObject() { return this.obj; } }    // Driver class to test above class Main {     public static void main(String[] args)     {         // instance of Integer type         Test<Integer> iObj = new Test<Integer>(15);         System.out.println(iObj.getObject());            // instance of String type         Test<String> sObj             = new Test<String>("GeeksForGeeks");         System.out.println(sObj.getObject());         iObj = sObj; // This results an error     } }

Output: 

error:
 incompatible types:
 Test cannot be converted to Test 

Even though iObj and sObj are of type Test, they are the references to different types because their type parameters differ. Generics add type safety through this and prevent errors.

Type Parameters in Java Generics

The type parameters naming conventions are important to learn generics thoroughly. The common type parameters are as follows:

  • T – Type
  • E – Element
  • K – Key
  • N – Number
  • V – Value

Advantages of Generics: 

Programs that use Generics has got many benefits over non-generic code. 

1. Code Reuse: We can write a method/class/interface once and use it for any type we want.

2. Type Safety: Generics make errors to appear compile time than at run time (It’s always better to know problems in your code at compile time rather than making your code fail at run time). Suppose you want to create an ArrayList that store name of students, and if by mistake the programmer adds an integer object instead of a string, the compiler allows it. But, when we retrieve this data from ArrayList, it causes problems at runtime.

 
  • Java
 
// Java program to demonstrate that NOT using // generics can cause run time exceptions    import java.util.*;    class Test {     public static void main(String[] args)     {         // Creatinga an ArrayList without any type specified         ArrayList al = new ArrayList();            al.add("Sachin");         al.add("Rahul");         al.add(10); // Compiler allows this            String s1 = (String)al.get(0);         String s2 = (String)al.get(1);            // Causes Runtime Exception         String s3 = (String)al.get(2);     } }

Output :

Exception in thread "main" java.lang.ClassCastException: 
   java.lang.Integer cannot be cast to java.lang.String
    at Test.main(Test.java:19)

How do Generics Solve this Problem? 

When defining ArrayList, we can specify that this list can take only String objects.

  • Java
 
// Using Java Generics converts run time exceptions into  // compile time exception. import java.util.*;    class Test {     public static void main(String[] args)     {         // Creating a an ArrayList with String specified         ArrayList <String> al = new ArrayList<String> ();            al.add("Sachin");         al.add("Rahul");            // Now Compiler doesn't allow this         al.add(10);             String s1 = (String)al.get(0);         String s2 = (String)al.get(1);         String s3 = (String)al.get(2);     } }

Output: 

15: error: no suitable method found for add(int)
        al.add(10); 
          ^

3. Individual Type Casting is not needed: If we do not use generics, then, in the above example, every time we retrieve data from ArrayList, we have to typecast it. Typecasting at every retrieval operation is a big headache. If we already know that our list only holds string data, we need not typecast it every time.

  • Java
 
// We don't need to typecast individual members of ArrayList    import java.util.*;    class Test {     public static void main(String[] args)     {         // Creating a an ArrayList with String specified         ArrayList<String> al = new ArrayList<String>();            al.add("Sachin");         al.add("Rahul");            // Typecasting is not needed         String s1 = al.get(0);         String s2 = al.get(1);     } }

4. Generics Promotes Code Reusability: With the help of generics in Java, we can write code that will work with different types of data. For example,

public <T> void genericsMethod (T data) {...}

Here, we have created a generics method. This same method can be used to perform operations on integer data, string data, and so on.

5. Implementing Generic Algorithms: By using generics, we can implement algorithms that work on different types of objects, and at the same, they are type-safe too.

This article is contributed by Dharmesh Singh. If you like GeeksforGeeks and would like to contribute, you can also write an article and mail your article to review-team@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks. Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.

标签:Java,String,al,Generics,Test,type,class
From: https://www.cnblogs.com/kungfupanda/p/16928882.html

相关文章

  • java发送邮件
    一邮件协议收发邮件具有与HTTP协议相同的邮件传输协议.SMTP:(SimpleMailTransferProtocol,简单邮件传输协议)发邮件协议POP3:(PostOfficeProtocolVersion3,邮局协议第......
  • Java中YYYY-MM-dd在跨年时出现的bug
    先看一张图:Bug的产生原因:日期格式化时候,把yyyy-MM-dd写成了YYYY-MM-dd Bug分析:当时间是2019-08-31时,publicclassDateTest{publicstaticvoidmain(Strin......
  • java中乐观锁CAS的实现探究——AtomicInteger
    CASCAS——compareandswap,比较并交换。是一种乐观锁的实现方式。更新操作时,在每次更新之前,都先比较一下被更新的目标T,值是不是等于读取到的旧值O,如果相等,则认为在读取......
  • JAVA网络编程TCP实现聊天功能,附在IDEA中同时运行2个或以上相同的java程序
    在IDEA中同时运行2个或以上相同的java程序在日常编写测试代码时,有时候会需要在idea上同时运行两个及以上相同的java程序,如:想运行两个CLIENTLOGIN测试聊天室效果。1.点击E......
  • java9
    Java9新特性Java9发布于2017年9月22日,带来了很多新特性,其中最主要的变化是已经实现的模块化系统。接下来我们会详细介绍Java9的新特性。Java9新特性模块系......
  • 基于java+swing的图书管理系统
    功能展示登录管理员-主界面管理员-增加书籍管理员-更新和删除书籍管理员-查找书籍管理员-查找所有书籍管理员-添加用户管理员-更新和删除用户管理员-查找......
  • Javascript(笔记53) - promise - 3 几个关键问题
    如何改变Promise的状态?1)resolve(value):如果当前是pending 就会变为resolved(或fulfilled); 2)reject(reason):如果当前是pending 就会变为rejected; 3) 抛出异常:如......
  • java中abstract详解
     Abstract(抽象)可以修饰类、方法 如果将一个类设置为abstract,则此类必须被继承使用。此类不可生成对象,必须被继承使用。 Abstract可以将子类的共性最大限度的抽取出来,放......
  • Java基础——继承(Extends)
    使用extends(继承)有什么好处?使用继承可以实现代码的重用,通过继承,子类可以继承父类的成员变量及成员方法,同时子类也可以定义自己的成员变量和成员方法。届时,子类将具有父类......
  • java——@ApiOperation注解
    @RequestMapping(value="/add",method=RequestMethod.POST)@ApiOperation(value="添加用户")publicsynchronizedBaseResponse<Long>addUser(@RequestBody......