TemplateSwapByRef.cpp — различия между версиями
Материал из Вики ИТ мехмата ЮФУ
Ulysses (обсуждение | вклад) (Новая страница: «=== Файл swap.h === <source lang="cpp">#ifndef #SWAP_H #define SWAP_H template<typename T> void swapByRef(T & a, T & b) { T aCopy = a; a = b; b = a…») |
Ulysses (обсуждение | вклад) (→Файл main.cpp) |
||
Строка 22: | Строка 22: | ||
int main() { | int main() { | ||
int a = 3, b = 4; | int a = 3, b = 4; | ||
− | + | swapByRef(a, b); | |
cout << a << " -- " << b << endl; // 4 -- 3 | cout << a << " -- " << b << endl; // 4 -- 3 | ||
double c = 3.14, d = 2.71; | double c = 3.14, d = 2.71; | ||
− | + | swapByRef(c, d); | |
cout << c << " -- " << d << endl; // 2.71 -- 3.14 | cout << c << " -- " << d << endl; // 2.71 -- 3.14 | ||
}</source> | }</source> |
Версия 21:33, 5 ноября 2012
Файл swap.h
#ifndef #SWAP_H
#define SWAP_H
template<typename T>
void swapByRef(T & a, T & b) {
T aCopy = a;
a = b;
b = aCopy;
}
#endif // SWAP_H
Файл main.cpp
#include <iostream>
#include "swap.h"
using namespace std;
int main() {
int a = 3, b = 4;
swapByRef(a, b);
cout << a << " -- " << b << endl; // 4 -- 3
double c = 3.14, d = 2.71;
swapByRef(c, d);
cout << c << " -- " << d << endl; // 2.71 -- 3.14
}