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

PDF
What is Interface in Java | How to implement Multiple Inheritance Using Inter...
DOCX
Java interface
PPTX
Interface in java ,multiple inheritance in java, interface implementation
PPT
Interface in java By Dheeraj Kumar Singh
PDF
What are Abstract Classes in Java | Edureka
PPT
PPTX
PPTX
Introduction to Java -unit-1
What is Interface in Java | How to implement Multiple Inheritance Using Inter...
Java interface
Interface in java ,multiple inheritance in java, interface implementation
Interface in java By Dheeraj Kumar Singh
What are Abstract Classes in Java | Edureka
Introduction to Java -unit-1

What's hot (18)

DOCX
Interface in java
PPTX
computer science JAVA ppt
ODP
Basic of Java
PPT
Chapter 9 Interface
PPTX
Concepts of core java
DOCX
Bca 4020 java programming
PPTX
Abstract class and Interface
PDF
Genesis and Overview of Java
PDF
8 abstract classes and interfaces
PPTX
Abstraction in java [abstract classes and Interfaces
PPTX
C++ Inheritance Tutorial | Introduction To Inheritance In C++ Programming Wit...
PDF
Javanotes
PPTX
Java interfaces
PPTX
Abstract class and interface
PPT
Java Language
PPTX
Polymorphism and interface in vb.net
PPTX
How do i use inheritance in java?
PPTX
C# Interface | Interfaces In C# | C# Interfaces Explained | C# Tutorial For B...
Interface in java
computer science JAVA ppt
Basic of Java
Chapter 9 Interface
Concepts of core java
Bca 4020 java programming
Abstract class and Interface
Genesis and Overview of Java
8 abstract classes and interfaces
Abstraction in java [abstract classes and Interfaces
C++ Inheritance Tutorial | Introduction To Inheritance In C++ Programming Wit...
Javanotes
Java interfaces
Abstract class and interface
Java Language
Polymorphism and interface in vb.net
How do i use inheritance in java?
C# Interface | Interfaces In C# | C# Interfaces Explained | C# Tutorial For B...
Ad

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

PDF
Java Classes | Java Tutorial for Beginners | Java Classes and Objects | Java ...
PDF
Java J2EE by Fairline
DOCX
Java_Couse_Content
PDF
Java Tutorial For Beginners - Step By Step | Java Basics | Java Certification...
PPTX
DAY_1.1.pptx
PPTX
Must Know Interview questions in Java.pptx
PPT
Jpa basics
PPT
Al rihieli persistence
PPTX
object oriented programming through java basics
PPT
PDF
bhargavi.pdfbhargavi.pdfbhargavi.pdfbhargavi.pdf
DOC
Strayer cis 406 week 10 assignment 2 u grade new
DOC
Strayer cis 406 week 10 assignment 2 u grade new
DOC
Strayer cis 406 week 10 assignment 2 u grade new
DOC
Strayer cis 406 week 10 assignment 2 u grade new
DOC
Strayer cis 406 week 10 assignment 2 u grade new
PDF
0 E158 C10d01
PDF
0 E158 C10d01
DOC
Strayer cis 406 week 10 assignment 2 u grade new
DOC
Strayer cis 406 week 10 assignment 2 u grade new
Java Classes | Java Tutorial for Beginners | Java Classes and Objects | Java ...
Java J2EE by Fairline
Java_Couse_Content
Java Tutorial For Beginners - Step By Step | Java Basics | Java Certification...
DAY_1.1.pptx
Must Know Interview questions in Java.pptx
Jpa basics
Al rihieli persistence
object oriented programming through java basics
bhargavi.pdfbhargavi.pdfbhargavi.pdfbhargavi.pdf
Strayer cis 406 week 10 assignment 2 u grade new
Strayer cis 406 week 10 assignment 2 u grade new
Strayer cis 406 week 10 assignment 2 u grade new
Strayer cis 406 week 10 assignment 2 u grade new
Strayer cis 406 week 10 assignment 2 u grade new
0 E158 C10d01
0 E158 C10d01
Strayer cis 406 week 10 assignment 2 u grade new
Strayer cis 406 week 10 assignment 2 u grade new
Ad

More from Edureka! (20)

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

Recently uploaded (20)

PPTX
Configure Apache Mutual Authentication
PDF
Produktkatalog für HOBO Datenlogger, Wetterstationen, Sensoren, Software und ...
PPTX
Final SEM Unit 1 for mit wpu at pune .pptx
PDF
How IoT Sensor Integration in 2025 is Transforming Industries Worldwide
PDF
Consumable AI The What, Why & How for Small Teams.pdf
PDF
Accessing-Finance-in-Jordan-MENA 2024 2025.pdf
PDF
OpenACC and Open Hackathons Monthly Highlights July 2025
PDF
Architecture types and enterprise applications.pdf
PDF
Convolutional neural network based encoder-decoder for efficient real-time ob...
PDF
Flame analysis and combustion estimation using large language and vision assi...
PDF
“A New Era of 3D Sensing: Transforming Industries and Creating Opportunities,...
PPTX
Build Your First AI Agent with UiPath.pptx
PPTX
The various Industrial Revolutions .pptx
PDF
Comparative analysis of machine learning models for fake news detection in so...
PDF
A proposed approach for plagiarism detection in Myanmar Unicode text
PPTX
Microsoft Excel 365/2024 Beginner's training
PDF
sustainability-14-14877-v2.pddhzftheheeeee
PDF
STKI Israel Market Study 2025 version august
PDF
Hybrid horned lizard optimization algorithm-aquila optimizer for DC motor
PDF
Improvisation in detection of pomegranate leaf disease using transfer learni...
Configure Apache Mutual Authentication
Produktkatalog für HOBO Datenlogger, Wetterstationen, Sensoren, Software und ...
Final SEM Unit 1 for mit wpu at pune .pptx
How IoT Sensor Integration in 2025 is Transforming Industries Worldwide
Consumable AI The What, Why & How for Small Teams.pdf
Accessing-Finance-in-Jordan-MENA 2024 2025.pdf
OpenACC and Open Hackathons Monthly Highlights July 2025
Architecture types and enterprise applications.pdf
Convolutional neural network based encoder-decoder for efficient real-time ob...
Flame analysis and combustion estimation using large language and vision assi...
“A New Era of 3D Sensing: Transforming Industries and Creating Opportunities,...
Build Your First AI Agent with UiPath.pptx
The various Industrial Revolutions .pptx
Comparative analysis of machine learning models for fake news detection in so...
A proposed approach for plagiarism detection in Myanmar Unicode text
Microsoft Excel 365/2024 Beginner's training
sustainability-14-14877-v2.pddhzftheheeeee
STKI Israel Market Study 2025 version august
Hybrid horned lizard optimization algorithm-aquila optimizer for DC motor
Improvisation in detection of pomegranate leaf disease using transfer learni...

What are Generics in Java | Java Generics Tutorial | Edureka