Object Oriented Programing - Generic Programing
Object Oriented Programing - Generic Programing
int a=1,b=2,temp;
temp=b;
b=a;
a=temp;
Object Oriented Programing - Generic Programing
public class Operasi{
public Object a,b;
private Object temp;
Public void tukarNilai(){
temp=b;
b=a;
a=temp;
}
}
public static void main(String args[]){
Operasi opr = new Operasi();
opr.a=“a”;
opr.b=“b”;
opr.tukarNilai();
}
public static void main(String args[]){
Operasi opr = new Operasi();
opr.a=1;
opr.b=2;
opr.tukarNilai();
}
Object Oriented Programing - Generic Programing
public class Operasi <T>{
public T a,b;
private T temp;
Public void tukarNilai(){
temp=b;
b=a;
a=temp;
}
}
public static void main(String args[]){
Operasi<Integer> opr = new Operasi<Integer>();
opr.a=1;
opr.b=2;
opr.tukarNilai();
}
public static void main(String args[]){
Operasi<String> opr = new Operasi<String>();
opr.a=“a”;
opr.b=“b”;
opr.tukarNilai();
}
Object Oriented Programing - Generic Programing

More Related Content

PPTX
latihan SAP
TXT
C Program : Sorting : Bubble,
PDF
Event loops in java script 01 - stack
PPTX
MFC List box
DOCX
matrix operation using operator overloading
PDF
Java Week7 Notepad
PDF
Saints Row on the Go - Bringing Saints Row The Third to the Nintendo Switch
latihan SAP
C Program : Sorting : Bubble,
Event loops in java script 01 - stack
MFC List box
matrix operation using operator overloading
Java Week7 Notepad
Saints Row on the Go - Bringing Saints Row The Third to the Nintendo Switch

What's hot (17)

TXT
Triangle
DOCX
Program
DOCX
Passato
PDF
CTF問題解説 OSのタスク切換え
DOCX
Progrma para calcular los numeros pares e impares
DOCX
Progrma para calcular los numeros pares e impares
DOCX
Pilas
PPTX
Librerias de c++
DOCX
PDF
Metodo newton-raphson
PDF
feedback
KEY
珠三角技术沙龙新语言场 C++11
PDF
Bcsl 033 data and file structures lab s1-2
PDF
07 3 do-while반복문
PDF
Sujet bac info 2012 g1, g2 et g3 avec correction
DOCX
Funciones
Triangle
Program
Passato
CTF問題解説 OSのタスク切換え
Progrma para calcular los numeros pares e impares
Progrma para calcular los numeros pares e impares
Pilas
Librerias de c++
Metodo newton-raphson
feedback
珠三角技术沙龙新语言场 C++11
Bcsl 033 data and file structures lab s1-2
07 3 do-while반복문
Sujet bac info 2012 g1, g2 et g3 avec correction
Funciones
Ad

Viewers also liked (15)

PDF
LA JUSTICE CLIMATIQUE AU CŒUR DE LA MISE EN OEUVRE DE L'ACCORD DE PARIS
PPTX
P.1 LA MULTICULTURALITAT
PPTX
sprimbet american
PPTX
napollu spring bed
PDF
PDF
15490719 182782553-182782817
ODT
Biology homework help
PPTX
Power pont historia
PPTX
toko spring bed
PDF
Plan de gestion guaure mogotes
PDF
PROCESS_HU
DOCX
T.linea
PDF
tp34 (5)
PPT
La clave de los neutrinos
LA JUSTICE CLIMATIQUE AU CŒUR DE LA MISE EN OEUVRE DE L'ACCORD DE PARIS
P.1 LA MULTICULTURALITAT
sprimbet american
napollu spring bed
15490719 182782553-182782817
Biology homework help
Power pont historia
toko spring bed
Plan de gestion guaure mogotes
PROCESS_HU
T.linea
tp34 (5)
La clave de los neutrinos
Ad

More from Bayu Firmawan Paoh (12)

PDF
[Seminar] ANALISIS KORELASI VARIABEL KONDISI LINGKUNGAN KANDANG TERHADAP KUAL...
PDF
Object Oriented Programing - Polymrphism
PDF
Object Oriented Programing-Intro
PDF
Object Oriented Programing - Inheritance
PDF
Object Oriented Programing - Intro
PDF
Presentation facade design pattern
PDF
Make Recyclerview With Android Studio
PDF
Android fundamental development
PDF
Basic Android Layout
PDF
Android - Getting Started With Firebase Auth
PDF
Basic Scala
PDF
How to make e-commerce with oscmax
[Seminar] ANALISIS KORELASI VARIABEL KONDISI LINGKUNGAN KANDANG TERHADAP KUAL...
Object Oriented Programing - Polymrphism
Object Oriented Programing-Intro
Object Oriented Programing - Inheritance
Object Oriented Programing - Intro
Presentation facade design pattern
Make Recyclerview With Android Studio
Android fundamental development
Basic Android Layout
Android - Getting Started With Firebase Auth
Basic Scala
How to make e-commerce with oscmax

Object Oriented Programing - Generic Programing