TemplateSwapByRef.cpp — различия между версиями
Материал из Вики ИТ мехмата ЮФУ
Ulysses (обсуждение | вклад) (→Файл main.cpp) |
Ulysses (обсуждение | вклад) (→Файл swap.h) |
||
Строка 1: | Строка 1: | ||
=== Файл swap.h === | === Файл swap.h === | ||
− | <source lang="cpp">#ifndef | + | <source lang="cpp">#ifndef SWAP_H |
#define SWAP_H | #define SWAP_H | ||
Версия 21:59, 7 ноября 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
}