Selasa, 12 Februari 2013

[Pemrograman C++] TEMPLATE FUNGSI DAN KELAS

MODUL 8
TEMPLATE FUNGSI DAN KELAS



SASARAN

1.    Mengetahui kemampuan template dalam C++
2.    Dapat menggunakan dan membuat template dalam C++

TUGAS PENDAHULUAN
1.    Apa yang anda ketahui tentang template ?
2.    Apa manfaat dari fungsi template ?

PRAKTIKUM

Contoh81.CPP
//*------------------------------------------------*
//* Contoh Fungsi Template               *
//*------------------------------------------------*

#include <iostream.h>
#include <conio.h>

template<class T>
void tukar(T &x, T &y)
{
  T tmp;

  tmp = x;
  x = y;
  y = tmp;
}
//akhir template

//prototype fungsi
void tukar(int &x, int &y);
void tukar(double &x, double &y);

void main()
{


Untuk file lengkapnya silahkan download disini

Related Articel:

0 komentar:

Posting Komentar

Twitter Delicious Facebook Digg Stumbleupon Favorites More

 
Design by Free WordPress Themes | Bloggerized by Lasantha - Premium Blogger Themes | Affiliate Network Reviews