الثلاثاء، 24 ديسمبر 2013
6:40 ص

template


#include "stdafx.h"
#include<iostream>
#include<conio.h>
using namespace std;
template < class t1,class t2>
class test
{
private:
t1 a;
t2 b;
public:
test(t1 x, t2 y)
{
a = x;
b = y;
}
void show()
{
cout << a << " and " << b << "\n";
}
};
void main()
{
test<int, float> tes1(33, 4.5);
test<char, int> tes2('w', 88);
tes1.show();
tes2.show();
_getch();

}

0 التعليقات:

إرسال تعليق