SlideShare a Scribd company logo
What are Generics in Java | Java Generics Tutorial | Edureka
WHAT IS GENERICS IN JAVA?
TYPES OF JAVA GENERICS
GENERIC FUNCTIONS
ADVANTAGES OF GENERICS IN JAVA
WHY GENERICS?
www.edureka.co/java-j2ee-soa-training
www.edureka.co/java-j2ee-soa-training
WHAT IS GENERICS IN JAVA?
Generics is a term that denotes a set of
language features related to the definition and
use of Generic types and methods.
www.edureka.co/java-j2ee-soa-training
www.edureka.co/java-j2ee-soa-training
WHY JAVA GENERICS?
www.edureka.co/java-j2ee-soa-training
TYPES OF JAVA GENERICS
www.edureka.co/java-j2ee-soa-training
TYPES OF
JAVA
GENERICS
Generic Type Class
class Genericclass{
private Object x;
public void set(Object x) { this.x = x; }
public Object get() { return x; }
}
www.edureka.co/java-j2ee-soa-training
TYPES OF
JAVA
GENERICS
Generic Type Interface
interface GenericInterface<T1, T2>
{
T2 PerformExecution(T1 x);
T1 ReverseExecution(T2 x); }
class Genericclass implements
GenericInterface<String, Integer> {
public Integer PerformExecution(String x)
{//execution code }
public String ReverseExecution(Integer x)
{ //execution code }
}
www.edureka.co/java-j2ee-soa-training
TYPES OF
JAVA
GENERICS
Generic Type Method
public static <T> int countAllOccurrences(T[]
list, T element) {
int count = 0;
if (element == null) {
for ( T listElement : list )
if (listElement == null)
count++;
}
else {
for ( T listElement : list )
if (element.equals(listElement))
count++;
}
return count;
}
www.edureka.co/java-j2ee-soa-training
TYPES OF
JAVA
GENERICS
Generic Type Constructor
class Dimension<T> {
private T length;
private T width;
private T height; }
public Dimension(T length, T width, T height){
super();
this.length = length;
this.width = width;
this.height = height;
}
www.edureka.co/java-j2ee-soa-training
GENERIC FUNCTIONS
www.edureka.co/java-j2ee-soa-training
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 generic
method, & further the compiler handles each
method.
www.edureka.co/java-j2ee-soa-training
www.edureka.co/java-j2ee-soa-training
ADVANTAGES OF
GENERICS IN
JAVA
Code Reusability
Type Safety
Individual type casting not required
Implementing non generic algorithms
www.edureka.co/java-j2ee-soa-training
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
www.edureka.co
www.edureka.co/java-j2ee-soa-training

More Related Content

What's hot (18)

DOCX
Interface in java
Hitesh Kumar
 
PPTX
computer science JAVA ppt
brijesh kumar
 
ODP
Basic of Java
Ajeet Kumar Verma
 
PPT
Chapter 9 Interface
OUM SAOKOSAL
 
PPTX
Concepts of core java
AkshitaMangrulkar
 
DOCX
Bca 4020 java programming
smumbahelp
 
PPTX
Abstract class and Interface
Haris Bin Zahid
 
PDF
Genesis and Overview of Java
Ravi_Kant_Sahu
 
PDF
8 abstract classes and interfaces
Tuan Ngo
 
PPTX
Abstraction in java [abstract classes and Interfaces
Ahmed Nobi
 
PPTX
C++ Inheritance Tutorial | Introduction To Inheritance In C++ Programming Wit...
Simplilearn
 
PDF
Javanotes
John Cutajar
 
PPTX
Java interfaces
jehan1987
 
PPTX
Abstract class and interface
Mazharul Sabbir
 
PPT
Java Language
tikret
 
PPTX
Polymorphism and interface in vb.net
KarthigaGunasekaran1
 
PPTX
How do i use inheritance in java?
kritikumar16
 
PPTX
C# Interface | Interfaces In C# | C# Interfaces Explained | C# Tutorial For B...
Simplilearn
 
Interface in java
Hitesh Kumar
 
computer science JAVA ppt
brijesh kumar
 
Basic of Java
Ajeet Kumar Verma
 
Chapter 9 Interface
OUM SAOKOSAL
 
Concepts of core java
AkshitaMangrulkar
 
Bca 4020 java programming
smumbahelp
 
Abstract class and Interface
Haris Bin Zahid
 
Genesis and Overview of Java
Ravi_Kant_Sahu
 
8 abstract classes and interfaces
Tuan Ngo
 
Abstraction in java [abstract classes and Interfaces
Ahmed Nobi
 
C++ Inheritance Tutorial | Introduction To Inheritance In C++ Programming Wit...
Simplilearn
 
Javanotes
John Cutajar
 
Java interfaces
jehan1987
 
Abstract class and interface
Mazharul Sabbir
 
Java Language
tikret
 
Polymorphism and interface in vb.net
KarthigaGunasekaran1
 
How do i use inheritance in java?
kritikumar16
 
C# Interface | Interfaces In C# | C# Interfaces Explained | C# Tutorial For B...
Simplilearn
 

Similar to What are Generics in Java | Java Generics Tutorial | Edureka (20)

PPT
Generic programming in java
anshu_atri
 
PPTX
Generic Collections and learn how to use it
halaplay385
 
PPTX
Generics
Shahjahan Samoon
 
PPT
SOEN6441.generics.ppt
ElieMambou1
 
PPT
SOEN6441.genericsSOEN6441.genericsSOEN6441.generics
tahircs1
 
PDF
08-L19-Generics.pdfGenerics Module 2.pptx
AlvasCSE
 
PPT
Generic Programming seminar
Gautam Roy
 
PPTX
Generics Module 2Generics Module Generics Module 2.pptx
AlvasCSE
 
PDF
Generics
Ravi_Kant_Sahu
 
PDF
Introducing generic types
Ivelin Yanev
 
PPT
Generics lecture
Bradford Bazemore
 
PDF
Generic Programming
Muhammad Alhalaby
 
PDF
Generics Tutorial
wasntgosu
 
PDF
117 A Outline 25
wasntgosu
 
PDF
Generics Past, Present and Future
RichardWarburton
 
PDF
Generics Tutorial
wasntgosu
 
PDF
Generics Past, Present and Future (Latest)
RichardWarburton
 
PDF
Generics and collections in Java
Gurpreet singh
 
PPT
Generic Types in Java (for ArtClub @ArtBrains Software)
Andrew Petryk
 
Generic programming in java
anshu_atri
 
Generic Collections and learn how to use it
halaplay385
 
SOEN6441.generics.ppt
ElieMambou1
 
SOEN6441.genericsSOEN6441.genericsSOEN6441.generics
tahircs1
 
08-L19-Generics.pdfGenerics Module 2.pptx
AlvasCSE
 
Generic Programming seminar
Gautam Roy
 
Generics Module 2Generics Module Generics Module 2.pptx
AlvasCSE
 
Generics
Ravi_Kant_Sahu
 
Introducing generic types
Ivelin Yanev
 
Generics lecture
Bradford Bazemore
 
Generic Programming
Muhammad Alhalaby
 
Generics Tutorial
wasntgosu
 
117 A Outline 25
wasntgosu
 
Generics Past, Present and Future
RichardWarburton
 
Generics Tutorial
wasntgosu
 
Generics Past, Present and Future (Latest)
RichardWarburton
 
Generics and collections in Java
Gurpreet singh
 
Generic Types in Java (for ArtClub @ArtBrains Software)
Andrew Petryk
 
Ad

More from Edureka! (20)

PDF
What to learn during the 21 days Lockdown | Edureka
Edureka!
 
PDF
Top 10 Dying Programming Languages in 2020 | Edureka
Edureka!
 
PDF
Top 5 Trending Business Intelligence Tools | Edureka
Edureka!
 
PDF
Tableau Tutorial for Data Science | Edureka
Edureka!
 
PDF
Python Programming Tutorial | Edureka
Edureka!
 
PDF
Top 5 PMP Certifications | Edureka
Edureka!
 
PDF
Top Maven Interview Questions in 2020 | Edureka
Edureka!
 
PDF
Linux Mint Tutorial | Edureka
Edureka!
 
PDF
How to Deploy Java Web App in AWS| Edureka
Edureka!
 
PDF
Importance of Digital Marketing | Edureka
Edureka!
 
PDF
RPA in 2020 | Edureka
Edureka!
 
PDF
Email Notifications in Jenkins | Edureka
Edureka!
 
PDF
EA Algorithm in Machine Learning | Edureka
Edureka!
 
PDF
Cognitive AI Tutorial | Edureka
Edureka!
 
PDF
AWS Cloud Practitioner Tutorial | Edureka
Edureka!
 
PDF
Blue Prism Top Interview Questions | Edureka
Edureka!
 
PDF
Big Data on AWS Tutorial | Edureka
Edureka!
 
PDF
A star algorithm | A* Algorithm in Artificial Intelligence | Edureka
Edureka!
 
PDF
Kubernetes Installation on Ubuntu | Edureka
Edureka!
 
PDF
Introduction to DevOps | Edureka
Edureka!
 
What to learn during the 21 days Lockdown | Edureka
Edureka!
 
Top 10 Dying Programming Languages in 2020 | Edureka
Edureka!
 
Top 5 Trending Business Intelligence Tools | Edureka
Edureka!
 
Tableau Tutorial for Data Science | Edureka
Edureka!
 
Python Programming Tutorial | Edureka
Edureka!
 
Top 5 PMP Certifications | Edureka
Edureka!
 
Top Maven Interview Questions in 2020 | Edureka
Edureka!
 
Linux Mint Tutorial | Edureka
Edureka!
 
How to Deploy Java Web App in AWS| Edureka
Edureka!
 
Importance of Digital Marketing | Edureka
Edureka!
 
RPA in 2020 | Edureka
Edureka!
 
Email Notifications in Jenkins | Edureka
Edureka!
 
EA Algorithm in Machine Learning | Edureka
Edureka!
 
Cognitive AI Tutorial | Edureka
Edureka!
 
AWS Cloud Practitioner Tutorial | Edureka
Edureka!
 
Blue Prism Top Interview Questions | Edureka
Edureka!
 
Big Data on AWS Tutorial | Edureka
Edureka!
 
A star algorithm | A* Algorithm in Artificial Intelligence | Edureka
Edureka!
 
Kubernetes Installation on Ubuntu | Edureka
Edureka!
 
Introduction to DevOps | Edureka
Edureka!
 
Ad

Recently uploaded (20)

PDF
The 2025 InfraRed Report - Redpoint Ventures
Razin Mustafiz
 
PPTX
AI Penetration Testing Essentials: A Cybersecurity Guide for 2025
defencerabbit Team
 
PPTX
COMPARISON OF RASTER ANALYSIS TOOLS OF QGIS AND ARCGIS
Sharanya Sarkar
 
PDF
Book industry state of the nation 2025 - Tech Forum 2025
BookNet Canada
 
PPTX
Future Tech Innovations 2025 – A TechLists Insight
TechLists
 
PPTX
From Sci-Fi to Reality: Exploring AI Evolution
Svetlana Meissner
 
PDF
POV_ Why Enterprises Need to Find Value in ZERO.pdf
darshakparmar
 
PDF
Future-Proof or Fall Behind? 10 Tech Trends You Can’t Afford to Ignore in 2025
DIGITALCONFEX
 
PPTX
The Project Compass - GDG on Campus MSIT
dscmsitkol
 
PDF
[Newgen] NewgenONE Marvin Brochure 1.pdf
darshakparmar
 
PDF
UPDF - AI PDF Editor & Converter Key Features
DealFuel
 
DOCX
Python coding for beginners !! Start now!#
Rajni Bhardwaj Grover
 
PDF
“Computer Vision at Sea: Automated Fish Tracking for Sustainable Fishing,” a ...
Edge AI and Vision Alliance
 
PPTX
Agentforce World Tour Toronto '25 - MCP with MuleSoft
Alexandra N. Martinez
 
PPTX
New ThousandEyes Product Innovations: Cisco Live June 2025
ThousandEyes
 
PDF
NLJUG Speaker academy 2025 - first session
Bert Jan Schrijver
 
PDF
Go Concurrency Real-World Patterns, Pitfalls, and Playground Battles.pdf
Emily Achieng
 
DOCX
Cryptography Quiz: test your knowledge of this important security concept.
Rajni Bhardwaj Grover
 
PDF
Newgen Beyond Frankenstein_Build vs Buy_Digital_version.pdf
darshakparmar
 
PDF
Kit-Works Team Study_20250627_한달만에만든사내서비스키링(양다윗).pdf
Wonjun Hwang
 
The 2025 InfraRed Report - Redpoint Ventures
Razin Mustafiz
 
AI Penetration Testing Essentials: A Cybersecurity Guide for 2025
defencerabbit Team
 
COMPARISON OF RASTER ANALYSIS TOOLS OF QGIS AND ARCGIS
Sharanya Sarkar
 
Book industry state of the nation 2025 - Tech Forum 2025
BookNet Canada
 
Future Tech Innovations 2025 – A TechLists Insight
TechLists
 
From Sci-Fi to Reality: Exploring AI Evolution
Svetlana Meissner
 
POV_ Why Enterprises Need to Find Value in ZERO.pdf
darshakparmar
 
Future-Proof or Fall Behind? 10 Tech Trends You Can’t Afford to Ignore in 2025
DIGITALCONFEX
 
The Project Compass - GDG on Campus MSIT
dscmsitkol
 
[Newgen] NewgenONE Marvin Brochure 1.pdf
darshakparmar
 
UPDF - AI PDF Editor & Converter Key Features
DealFuel
 
Python coding for beginners !! Start now!#
Rajni Bhardwaj Grover
 
“Computer Vision at Sea: Automated Fish Tracking for Sustainable Fishing,” a ...
Edge AI and Vision Alliance
 
Agentforce World Tour Toronto '25 - MCP with MuleSoft
Alexandra N. Martinez
 
New ThousandEyes Product Innovations: Cisco Live June 2025
ThousandEyes
 
NLJUG Speaker academy 2025 - first session
Bert Jan Schrijver
 
Go Concurrency Real-World Patterns, Pitfalls, and Playground Battles.pdf
Emily Achieng
 
Cryptography Quiz: test your knowledge of this important security concept.
Rajni Bhardwaj Grover
 
Newgen Beyond Frankenstein_Build vs Buy_Digital_version.pdf
darshakparmar
 
Kit-Works Team Study_20250627_한달만에만든사내서비스키링(양다윗).pdf
Wonjun Hwang
 

What are Generics in Java | Java Generics Tutorial | Edureka