本博文是学习黑马程序员C++视频时做的笔记,记录一下只是方便温故知新,不做其他用途。
一、模板的概念
1、模板的特点: (1)不可以直接使用,它只是一个模板; (2)模板的通用不是万能的。 2、C++提供两种模板机制: (1)函数模板; (2)类模板。
二、函数模板
2.1 函数模板的基本语法
语法:
template<typename T>
模板有两种使用方法: (1)自动推导类型,例如myswap(a,b); (2)显示指定类型,例如myswap(a,b);
#include<iostream>
#include<string>
using namespace std;
template<typename T>
void myswap(T &a,T &b)
{
T temp = a;
a = b;
b = temp;
}
void test01()
{
int a = 10;
int b = 20;
myswap<int>(a,b);
cout<<"a = "<<a<<endl;
cout<<"b = "<<b<<endl;
}
int main()
{
test01();
return 0;
}
2.2函数模板的注意事项
(1)自动推导类型,必须推导出一致的数据类型T才可以使用 (2)模板必须确定出T的数据类型才可以使用。
#include<iostream>
#include<string>
using namespace std;
template<typename T>
void myswap(T &a,T &b)
{
T temp = a;
a = b;
b = temp;
}
void test01()
{
int a = 10;
int b = 20;
char c = 'c';
myswap(a,b);
cout<<"a = "<<a<<endl;
cout<<"b = "<<b<<endl;
}
template<typename T>
void func()
{
cout<<"func 调用"<<endl;
}
void test02()
{
func<int>();
}
int main()
{
test01();
test02();
return 0;
}
2.3 函数模板案例-数组的选择排序
#include<iostream>
#include<string>
using namespace std;
template<typename T>
void mySwap(T &a, T&b)
{
T temp = a;
a = b;
b = temp;
}
template<typename T>
void mySort(T arr[], int len)
{
for (int i = 0; i < len; i++)
{
int max = i;
for (int j = i + 1; j < len; j++)
{
if (arr[max] < arr[j])
{
max = j;
}
}
if (max != i)
{
mySwap(arr[max], arr[i]);
}
}
}
template<typename T>
void printArray(T arr[], int len)
{
for (int i = 0; i < len; i++)
{
cout << arr[i] << " ";
}
cout << endl;
}
void test01()
{
char charArr[] = "bdcfeagh";
int num = sizeof(charArr) / sizeof(char);
mySort(charArr, num);
printArray(charArr, num);
}
void test02()
{
int intArr[] = {1,3,5,7,9,2,4,6,8};
int num = sizeof(intArr) / sizeof(int);
mySort(intArr, num);
printArray(intArr, num);
}
int main()
{
test01();
test02();
return 0;
}
2.4 普通模板与函数模板的区别
区别: (1)普通函数调用时,可以发生自动类型转换(隐式类型转换); (2)函数模板调用时,如果利用自动类型推导,不会发生隐式类型转换; (3)如果利用显示指定类型的方式,可以发生隐式类型转换。
#include<iostream>
#include<string>
using namespace std;
int myAdd01(int a, int b)
{
return a + b;
}
template<typename T>
T myAdd02(T a, T b)
{
return a + b;
}
void test01()
{
int a = 10;
int b = 20;
char c = 'c';
cout << myAdd01(a, c) << endl;
cout<<myAdd02<int>(b, c)<<endl;
}
int main()
{
test01();
return 0;
}
2.5 普通函数和函数模板的调用规则
规则: (1)如果普通函数和函数模板都可以实现,优先调用普通函数; (2)可以通过空模板参数列表来强制调用函数模板; (3)函数模板也可以发生重载; (4)如果函数模板可以产生更好的匹配,优先调用函数模板。
#include<iostream>
#include<string>
using namespace std;
void myPrint(int a, int b)
{
cout << "调用的普通函数" << endl;
}
template<typename T>
void myPrint(T a, T b)
{
cout << "调用的模板" << endl;
}
template<typename T>
void myPrint(T a, T b, T c)
{
cout << "调用重载的模板" << endl;
}
void test01()
{
int a = 10;
int b = 20;
myPrint(a, b);
myPrint<>(a, b);
int c = 30;
myPrint(a, b, c);
char c1 = 'a';
char c2 = 'b';
myPrint(c1, c2);
}
int main()
{
test01();
return 0;
}
2.6 函数模板的局限性
模板的通用性不是万能的。
#include<iostream>
#include<string>
using namespace std;
class Person
{
public:
Person(string name, int age)
{
this->m_Name = name;
this->m_Age = age;
}
string m_Name;
int m_Age;
};
template<class T>
bool myCompare(T& a, T& b)
{
if (a == b)
{
return true;
}
else
{
return false;
}
}
template<> bool myCompare(Person &p1, Person &p2)
{
if ( p1.m_Name == p2.m_Name && p1.m_Age == p2.m_Age)
{
return true;
}
else
{
return false;
}
}
void test01()
{
int a = 10;
int b = 20;
bool ret = myCompare(a, b);
if (ret)
{
cout << "a == b " << endl;
}
else
{
cout << "a != b " << endl;
}
}
void test02()
{
Person p1("Tom", 10);
Person p2("Tom", 10);
bool ret = myCompare(p1, p2);
if (ret)
{
cout << "p1 == p2 " << endl;
}
else
{
cout << "p1 != p2 " << endl;
}
}
int main()
{
test01();
test02();
return 0;
}
三、类模板
类模板作用:建立一个通用类,类中的成员 数据类型可以不具体制定,用一个虚拟的类型来代表。
3.1 类模板语法
template<typename T>
类
其中, ● template — 声明创建模板; ● typename — 表面其后面的符号是一种数据类型,可以用class代替; ● T — 通用的数据类型,名称可以替换,通常为大写字母。
#include<iostream>
#include<string>
using namespace std;
template<class NameType,class AgeType>
class Person
{
public:
Person(NameType name, AgeType age)
{
this->m_Name = name;
this->m_Age = age;
}
void ShowPerson()
{
cout<<"naem:"<< this->m_Name<<"age:"<< this->m_Age<<endl;
}
NameType m_Name;
AgeType m_Age;
};
void test01()
{
Person<string,int>p1("孙悟空",999);
p1.ShowPerson();
}
int main()
{
test01();
return 0;
}
3.2 类模板与函数模板的区别
区别: 1、类模板没有自动类型推导的使用方式; 2、类模板在模板参数列表中可以有默认参数。
#include<iostream>
#include<string>
using namespace std;
template<class NameType,class AgeType = int>
class Person
{
public:
Person(NameType name, AgeType age)
{
this->m_Name = name;
this->m_Age = age;
}
void ShowPerson()
{
cout<<"naem:"<< this->m_Name<<"age:"<< this->m_Age<<endl;
}
NameType m_Name;
AgeType m_Age;
};
void test01()
{
Person<string,int>p1("孙悟空",999);
p1.ShowPerson();
}
void test02()
{
Person<string>p2("猪八戒",1000);
p2.ShowPerson();
}
int main()
{
test01();
test02();
return 0;
}
3.3 类模板成员函数创建时机
类模板中成员函数和普通类中成员函数创建时机是有区别的: 1、普通类中的成员函数一开始就可以创建; 2、类模板中的成员函数在调用时才创建。
#include<iostream>
#include<string>
using namespace std;
class Person1
{
public:
void ShowPerson1()
{
cout << "Person1 show" << endl;
}
};
class Person2
{
public:
void ShowPerson2()
{
cout << "Person2 show" << endl;
}
};
template<class T>
class MyClass
{
public:
T obj;
void fun1()
{
obj.ShowPerson1();
}
void fun2()
{
obj.ShowPerson2();
}
};
void test01()
{
MyClass<Person1> m;
m.fun1();
}
int main()
{
test01();
return 0;
}
3.4 类模板对象做函数参数
一共有三种传入方式: 1、指定传入类型——直接显示对象的数据类型; 2、参数模板化——将对象中的参数变为模板进行传递; 3、整个参数类模板化——将这个对象模板化进行传递。
#include<iostream>
#include<string>
#include<typeinfo>
using namespace std;
template<class T1,class T2>
class Person
{
public:
Person(T1 name,T2 age)
{
this->m_Name = name;
this->m_Age = age;
}
void ShowPerson()
{
cout<<"姓名:"<< this->m_Name<<"年龄"<< this->m_Age<<endl;
}
T1 m_Name;
T2 m_Age;
};
void printPerson01(Person<string,int>&p)
{
p.ShowPerson();
}
void test01()
{
Person<string,int>p("孙悟空",100);
printPerson01(p);
}
template<class T1,class T2>
void printPerson02(Person<T1,T2>&p)
{
p.ShowPerson();
}
void test02()
{
Person<string,int>p("猪八戒",101);
printPerson02(p);
}
template<class T3>
void printPerson03(T3 &p)
{
p.ShowPerson();
}
void test03()
{
Person<string,int>p("唐僧",33);
printPerson03(p);
}
int main()
{
test01();
test02();
test03();
return 0;
}
3.5 类模板与继承
当类模板碰到继承时,需要注意一下几点: 1、当子类继承的父类是一个类模板时,子类在声明的时候,要指定出父类中T的类型; 2、如果不指定,编译器无法给子类分配内存; 3、如果想灵活指定出父类中T的类型,子类也需变为类模板。
#include<iostream>
#include<string>
#include<typeinfo>
using namespace std;
template<class T>
class Base
{
T m;
};
class Son: public Base<int>
{
};
void test01()
{
Son s1;
}
template<class T1,class T2>
class Son2: public Base<T2>
{
public:
Son2()
{
cout<<"T1的类型为:"<<typeid(T1).name()<<endl;
cout<<"T2的类型为:"<<typeid(T2).name()<<endl;
}
T1 obj;
};
void test02()
{
Son2<int,char>s2;
}
int main()
{
test01();
test02();
return 0;
}
3.6 类模板成员类外实现
#include<iostream>
#include<string>
using namespace std;
template<class T1,class T2>
class Person
{
public:
Person(T1 name,T2 age);
void showPerson();
T1 m_Name;
T2 m_Age;
};
template<class T1,class T2>
Person<T1,T2>::Person(T1 name, T2 age)
{
this->m_Name = name;
this->m_Age = age;
}
template<class T1,class T2>
void Person<T1,T2>::showPerson()
{
cout<<"Name:"<< this->m_Name<<"Age:"<< this->m_Age<<endl;
}
void test01()
{
Person<string,int>p("Tom",20);
p.showPerson();
}
int main()
{
test01();
return 0;
}
3.7 类模板分文件编写
● 存在问题: 类模板中成员函数创建时机是在调用阶段,导致分文件编写时链接不到。 ● 解决方法: 解决方式1:直接包含.cpp源文件; 解决方式2:将声明和实现写到同一个文件中,并更改后缀名为.hpp,hpp是约定的名称,并不是强制。
person.hpp文件中内容
#ifndef CLIONPROJECTS_PERSON_H
#define CLIONPROJECTS_PERSON_H
#endif
#pragma once
#include <iostream>
using namespace std;
#include <string>
template<class T1, class T2>
class Person
{
public:
Person(T1 name, T2 age);
void showPerson();
public:
T1 m_Name;
T2 m_Age;
};
template<class T1, class T2>
Person<T1, T2>::Person(T1 name, T2 age)
{
this->m_Name = name;
this->m_Age = age;
}
template<class T1, class T2>
void Person<T1, T2>::showPerson()
{
cout << "姓名: " << this->m_Name << " 年龄:" << this->m_Age << endl;
}
类模板分文件中的.cpp代码
#include<iostream>
#include<string>
using namespace std;
#include "person.hpp"
void test01()
{
Person<string,int>p("Jerry",18);
p.showPerson();
}
int main()
{
test01();
return 0;
}
3.8 类模板与友元
1、全局函数类内实现 - 直接在类内声明友元即可; 2、全局函数类外实现 - 需要提前让编译器知道全局函数的存在。
#include <iostream>
using namespace std;
template<class T1, class T2>
class Person;
template<class T1,class T2>
void printPerson2(Person<T1,T2>p)
{
cout<<"全局函数类外实现——姓名:"<<p.m_Name<<"年龄:"<<p.m_Age<<endl;
}
template<class T1,class T2>
class Person
{
friend void printPerson(Person<T1,T2>p)
{
cout<<"姓名:"<<p.m_Name<<"年龄"<<p.m_Age<<endl;
}
friend void printPerson2<>(Person<T1,T2>p);
public:
Person(T1 name,T2 age)
{
this->m_Name = name;
this->m_Age = age;
}
private:
T1 m_Name;
T2 m_Age;
};
void test01()
{
Person<string,int>p1("Tom",20);
printPerson(p1);
}
void test02()
{
Person<string,int>p2("Tim",22);
printPerson2(p2);
}
int main()
{
test01();
test02();
return 0;
}
|