-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplates.cpp
174 lines (133 loc) · 2.59 KB
/
templates.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
//templates
//creat a pair class without and with templates
//when both have same type T
//ans when both have diff type T , V
// How to make Triplate<int,int,int> or Triplate<int,char,double> without making new class ....
//.......................................................................
//->without templates
#include<iostream>
using namespace std;
class Pair{
int x;
int y;
public:
void setX(int x)
{
this->x=x;
}
int getX()
{
return x;
}
void setY(int y)
{
this->y=y;
}
int getY()
{
return y;
}
};
int main()
{
Pair p;
p.setX(3);
cout<<p.getX()<<endl;
p.setY(4);
cout<<p.getY();
}
//..............................
//-->now using templates..
//-->both x and y have same type T
#include<iostream>
using namespace std;
template <typename T> // we need to tell compiler what this T is...
class Pair{
T x;
T y;
public:
void setX(T x)
{
this->x=x;
}
T getX()
{
return x;
}
void setY(T y)
{
this->y=y;
}
T getY()
{
return y;
}
};
int main()
{
Pair<char> p;
p.setX('a');
cout<<p.getX()<<endl;
p.setY(66);
cout<<p.getY();
}
//.............................................
//--> x and y will have different type...
#include<iostream>
using namespace std;
template <typename T , typename V>
class Pair{
T x;
V y;
public:
void setX(T x)
{
this->x=x;
}
T getX()
{
return x;
}
void setY(V y)
{
this->y=y;
}
V getY()
{
return y;
}
};
int main()
{
Pair<char,int> p;
p.setX('a');
cout<<p.getX()<<endl;
p.setY('b');
cout<<p.getY();
}
//......................................................................................................................................
//--> to make Triplate<int,int,int> or Triplate<int,char,double> without making new class ....
int main()
{
Pair<Pair<int,int>,int>p;
Pair<int,int>p1;
p1.setX(1);
p1.setY(2);
p.setX(p1);
p.setY(3);
cout<<p1.getX()<<" "<<p1.getY()<<endl;
cout<<p.getX().getX()<<" "<<p.getX().getY()<<" "<<p.getY()<<endl;
}
//.......
int main()
{
Pair<Pair<int,char>,double>p;
Pair<int,char>p1;
p1.setX(1);
p1.setY('a');
p.setX(p1);
p.setY(3.2321);
cout<<p1.getX()<<" "<<p1.getY()<<endl;
cout<<p.getX().getX()<<" "<<p.getX().getY()<<" "<<p.getY()<<endl;
}
//.....................................................................................................................