c++——函数模板重载
#include<iostream>using namespace std;//函数模板的重载template <class T>void Swap(T &a, T&b);template <typename T> void Swap(T a[], T b[], int len);void printArray(int arr[],int len);int main(){ int