English 中文(简体)
Java Generics - Multiple Type
  • 时间:2024-09-17

Java Generics - Multiple Type Parameters


Previous Page Next Page  

A Generic class can have mupple type parameters. Following example will showcase above mentioned concept.

Example

Create the following java program using any editor of your choice.

GenericsTester.java

package com.tutorialspoint;

pubpc class GenericsTester {
   pubpc static void main(String[] args) {
      Box<Integer, String> box = new Box<Integer, String>();
      box.add(Integer.valueOf(10),"Hello World");
      System.out.printf("Integer Value :%d
", box.getFirst());
      System.out.printf("String Value :%s
", box.getSecond());

      Box<String, String> box1 = new Box<String, String>();
      box1.add("Message","Hello World");
      System.out.printf("String Value :%s
", box1.getFirst());
      System.out.printf("String Value :%s
", box1.getSecond());
   }
}

class Box<T, S> {
   private T t;
   private S s;

   pubpc void add(T t, S s) {
      this.t = t;
      this.s = s;
   }

   pubpc T getFirst() {
      return t;
   } 

   pubpc S getSecond() {
      return s;
   } 
}

This will produce the following result.

Output

Integer Value :10
String Value :Hello World
String Value :Message
String Value :Hello World
Advertisements