C++ 类和对象笔记之模板


c++提供了函数模板(function template.)所谓函数模板,实际上是建立一个通用函数,其函数类型和形参类型不具体制定,用一个虚拟的类型来代表。这个通用函数就成为函数模板。凡是函数体相同的函数都可以用这个模板代替,不必定义多个函数,只需在模板中定义一次即可。在调用函数时系统会根据实参的类型来取代模板中的虚拟类型,从而实现不同函数的功能。

  • c++提供两种模板机制:函数模板和类模板
  • 类属 - 类型参数化,又称参数模板

1 函数模板

  • 泛型编程 – 模板技术 特点:类型参数化
  • template< typename T > 告诉编译器后面紧跟着的函数或者类中出现T,不会报错,T是一个通用的数据类型
  • 实现通用两个数进行交换函数,使用
    自动类型推导 必须要推导出一致的T才可以使用
    显示指定类型 mySwap < int >(a,b);
#define _CRT_SECURE_NO_WARNINGS
#include<iostream>
#include <cstdio>
#include <string>
#include <cstdlib>
#include <cmath>
#include <ctime>
#include<vector>
#include<string>
#include<queue>
#include<stack>
#include<memory>
using namespace std;
void mySwapInt(int &a, int &b)
{
	int temp = a;
	a = b;
	b = temp;
}
void mySwapDouble(double &a, double &b)
{
	double temp = a;
	a = b;
	b = temp;
}
//利用模板实现通用交换函数
template<typename T>//T代表有一个通用得数据类型,告诉编译器如果下面紧跟着的函数或者类中出现T不要报错,class 和 typename都是一样的

void mySwap(T &a, T &b) 
{
	T temp = a;
	a = b;
	b = temp;
}
//模板不能单独使用,必须指定出T才可以使用
template<typename T>
void mySwap2()
{
	
}
void test01() {
	int a = 10;
	int b = 20;
	//1、自动类型推到,必须推导出一致的T数据类型,才可以正常使用模板
	//推导不出一致的T,因此无法调用
	//mySwapInt(a, b);
	//char c1 = 'c';
	mySwap(a, b);
	cout << a << endl;
	cout << b << endl;
	//mySwap<int>(a, c1);
	//cout << a << endl;
	//cout << c1 << endl;
	double c = 3.14;
	double d = 1.1;
	
	//mySwapDouble(c, d);
	//2、显示指定类型
	mySwap<int>(a, b);
	mySwap2<int>();//必须告诉编译器T类型才可以调用
	mySwap(c, d);
	cout << c << endl;
	cout << d << endl;
	
}
int main(void)
{
	test01();
	system("pause");
	return EXIT_SUCCESS;
}

在这里插入图片描述
   用模板是为了实现泛型,可以减轻编程的工作量,增强函数的重用性。

2 函数模板与普通函数的区别

函数模板和普通函数的区别以及调用规则。
区别

  • 函数模板:如果使用自动类型推导,是不可以发生隐式类型转换的。

  • 普通函数: 可以发生隐式类型转换。
    调用规则

  • 如果函数模板和普通函数都可以调用,那么优先调用普通函数。

  • 如果想强制调用函数模板,可以使用空模板参数列表。
    myPrint<>(a, b);

  • 函数模板也可以发生函数重载。如果函数模板能产生更好的匹配,那么优先使用函数模板
    模板的实现机制

  • 编译器并不是把函数模板处理成能够处理任何类型的函数。

  • 函数模板通过具体类型产生不同的函数 — 通过函数模板产生的函数称为模板函数。

  • 编译器会对函数模板进行两次编译,在声明的地方对模板代码本身进行编译,在调用的地方对参数替换后的代码进行编译。

#define _CRT_SECURE_NO_WARNINGS
#include<iostream>
using namespace std;

//1、函数模板和普通函数的区别
template<class T>
T myAdd(T a, T b)
{
	return a + b;
}

int myAdd2(int a, int b)
{
	return a + b;
}
void test01()
{
	int a = 10;
	int b = 20;
	char c = 'c';
	//myAdd(a, c); //如果使用自动类型推导,是不可以发生隐式类型转换的

	cout << myAdd2(a, c) << endl; //普通函数 可以发生隐式类型转换
}


//2、函数模板和普通函数的调用规则
template<class T>
void myPrint(T a, T b)
{
	cout << "函数模板调用" << endl;
}

/*
函数模板通过具体类型产生不同的函数  --- 通过函数模板产生的函数  称为 模板函数
void myPrint(int a ,int b)
{
cout << "函数模板调用" << endl;
}

void myPrint(double a ,double b)
{
cout << "函数模板调用" << endl;
}
*/

template<class T>
void myPrint(T a, T b, T c)
{
	cout << "函数模板(T a, T b ,T c)调用" << endl;
}

void myPrint(int a, int b)
{
	cout << "普通函数调用" << endl;
}



void test02()
{
	//1、如果函数模板和普通函数都可以调用,那么优先调用普通函数
	int a = 10;
	int b = 20;
	//myPrint(a, b);

	//2、如果想强制调用函数模板,可以使用空模板参数列表
	myPrint<>(a, b);

	//3、函数模板也可以发生函数重载
	myPrint(a, b, 10);

	//4、如果函数模板能产生更好的匹配,那么优先使用函数模板
	char c = 'c';
	char d = 'd';
	myPrint(c, d);

}

int main() {

	//test01();

	test02();

	system("pause");
	return EXIT_SUCCESS;
}

4模板局限性

4.1模板的实现机制

  • 编译器并不是把函数模板处理成能够处理任何类型的函数
  • 函数模板通过具体类型产生不同的函数 — 通过函数模板产生的函数 称为模板函数。
  • 编译器会对函数模板进行两次编译,在声明的地方对模板代码本身进行编译,在调用的地方对参数替换后的代码进行编译。

4.2 模板局限性

  • 模板并不是真实的通用,对于自定义数据类型,可以使用具体化技术,实现对自定义数据类型特殊使用
  • template<> bool myCompare(Person &a, Person &b)
#define _CRT_SECURE_NO_WARNINGS
#include<iostream>
using namespace std;
#include <string>
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;
	}
	return false;
}

//利用具体化技术,实现对自定义数据类型提供特殊模板
template<> bool myCompare(Person &a, Person &b)
{
	if (a.m_Name == b.m_Name && a.m_Age == b.m_Age)
	{
		return true;
	}
	return false;
}

void test01()
{
	int a = 10;
	int b = 10;

	bool ret1 = myCompare(a, b);

	if (ret1 )
	{
		cout << "a == b" << endl;
	}
	else
	{
		cout << "a != b" << endl;
	}

	Person p1("Tom", 19);
	Person p2("Tom", 20);

	bool ret = myCompare(p1, p2);
	if (ret)
	{
		cout << "p1 == p2" << endl;
	}
	else
	{
		cout << "p1 != p2" << endl;
	}
}

int main() {

	test01();

	system("pause");
	return EXIT_SUCCESS;
}

在这里插入图片描述

5 类模板

类模板和函数模板区别:

  • 类模板不可以使用自动类型推导,只能用显示指定类型
  • 类模板中 可以有默认参数
#define _CRT_SECURE_NO_WARNINGS
#include<iostream>
using namespace std;
#include <string>
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 << "姓名: " << this->m_Name << " 年龄: " << this->m_Age << endl;
	}
	NAMETYPE m_Name;
	AGETYPE m_Age;
};

void test01()
{

	//类模板和函数模板区别:
	//1、类模板不可以使用自动类型推导,只能用显示指定类型
	//2、类模板中 可以有默认参数
	//Person p1("孙悟空", 100);

	Person<string > p1("孙悟空", 100);
	p1.showPerson();
}

int main() {

	test01();

	system("pause");
	return EXIT_SUCCESS;
}

6 类模板中成员函数创建时机

类模板中的成员函数并不是一开始创建的,而是在运行阶段确定出T的数据类型才去创建

#define _CRT_SECURE_NO_WARNINGS
#include<iostream>
#include <cstdio>
#include <string>
#include <cstdlib>
#include <cmath>
#include <ctime>
#include<vector>
#include<string>
#include<queue>
#include<stack>
#include<numeric>
#include<unordered_map>
#include<memory>
using namespace std;
class Person1
{
public:
	void showPerson1() 
	{
		cout << "Person1 show 调用" << endl;
	}
};
class Person2 
{
public:
	void showPerson2()
	{
		cout << "Person2 show调用" << endl;
	}
};
//类模板中的成员函数 并不是一开始创建的,而是在运行阶段确定出T的数据类型才去创建
template<class T>
class MyClass
{
public:
	void func1() 
	{
		obj.showPerson1();
	}
	void func2() 
	{
		obj.showPerson2();
	}
	T obj;
};
void test01()
{
	MyClass<Person1> p1;
	p1.func1();
	//p1.func2();
}
int main(void)
{
	test01();
	system("pause");
	return EXIT_SUCCESS;
}

7 类模板做函数参数

类模板做函数参数

  • 指定传入类型
    void doWork(Person <string, int>&p)
  • 参数模板化
    template<class T1, class T2>
    void doWork2(Person <T1, T2>&p)
  • 整个类模板化
    template < class T > void doWork3( T &p)
  • 查看T数据类型
    typeid(T).name()
#define _CRT_SECURE_NO_WARNINGS
#include<iostream>
using namespace std;
#include <string>
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;
};
//1、指定传入类型
void doWork(Person <string, int>&p)
{
	p.showPerson();
}
void test01()
{
	Person <string, int>p("孙悟空", 999);
	doWork(p);
}
//2、参数模板化
template<class T1, class T2>
void doWork2(Person <T1, T2>&p)
{
	cout << "T1数据类型: " << typeid(T1).name() << endl;
	cout << "T2数据类型: " << typeid(T2).name() << endl;
	p.showPerson();
}
void test02()
{
	Person<string, int>p("猪八戒", 998);
	doWork2(p);
}
//3、整个类 模板化
template<class T>
void doWork3(T &p)
{
	cout << "T的数据类型: " << typeid(T).name() << endl;
	p.showPerson();
}

void test03()
{
	Person<string, int>p("唐僧", 10000);
	doWork3(p);
}

int main() {
	test01();
	test02();
	test03();
	system("pause");
	return EXIT_SUCCESS;
}

运行结果

8 类模板碰到继承的问题以及解决

  • 必须要指定出父类中的T数据类型,才能给子类分配内存
  • template<class T1 ,class T2>
  • class Son2 :public Base2 <T2 >
#define _CRT_SECURE_NO_WARNINGS
#include<iostream>
using namespace std;
template<class T>
class Base
{
public:
	T m_A;
};
//必须要指定出父类中的T数据类型,才能给子类分配内存
class Son :public Base<int>
{
};
template<class T>
class Base2
{
public:
	T m_A;
};
template<class T1, class T2>
class Son2 :public Base2<T2>
{
public:
	Son2()
	{
		cout << typeid(T1).name() << endl;
		cout << typeid(T2).name() << endl;
	}
	T1 m_B;
};
void test01()
{
	Son2 <int, double> s;
}
int main() {
	test01();
	system("pause");
	return EXIT_SUCCESS;
}
![运行结果](https://img-blog.csdnimg.cn/20210531203204507.png)

9 类模板中的成员函数类外实现

  • void Person<T1, T2>::showPerson()
#define _CRT_SECURE_NO_WARNINGS
#include<iostream>
#include <cstdio>
#include <string>
#include <cstdlib>
#include <cmath>
#include <ctime>
#include<vector>
#include<string>
#include<queue>
#include<stack>
#include<numeric>
#include<unordered_map>
#include<memory>
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;
};
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;
}
void test01() 
{
	Person<string, int> p("Tom", 10);
	p.showPerson();
}
int main(void)
{
	test01();
	system("pause");
	return EXIT_SUCCESS;
}

运行结果

10 类模板的分文件编写问题以及解决

类模板中的成员函数,不会一开始创建,因此导致分文件编写时连接不到函数的实现,出现无法解析的外部命令错误。

  • 解决方式1:
    直接包含.cpp文件 (不推荐)。
  • 解决方式2:
    将类声明和实现写到同一个文件中,将文件的后缀名改为 .hpp 即可。
  • 代码

person.hpp

#pragma once
#define _CRT_SECURE_NO_WARNINGS
#include<iostream>
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 << "姓名: " << this->m_Name << " 年龄:" << this->m_Age << endl;
}

test.cpp

#define _CRT_SECURE_NO_WARNINGS
#include<iostream>
using namespace std;
#include "person.hpp"
#include <string>

void test01()
{
	Person<string, int> P("Jerry", 20);
	P.showPerson();
}


int main() {

	test01();


	system("pause");
	return EXIT_SUCCESS;
}

在这里插入图片描述

11 类模板碰到友元函数

  • 友元类内实现
    friend void printPerson(Person<T1, T2> &p)
  • 友元类外实现
    声明:
      friend void printPerson2<>(Person<T1, T2> &p);
    实现:
      template<class T1,class T2>
      void printPerson2(Person<T1, T2> &p){ 。。。}
      template<class T1,class T2>
      class Person;
      template<class T1,class T2>
      void printPerson2(Person<T1, T2> &p);
#define _CRT_SECURE_NO_WARNINGS
#include<iostream>
#include <cstdio>
#include <string>
#include <cstdlib>
#include <cmath>
#include <ctime>
#include<vector>
#include<string>
#include<queue>
#include<stack>
#include<numeric>
#include<unordered_map>
#include<memory>
using namespace std;
template<class T1,class T2>
class Person;
template<class T1,class T2>
void printPerson3(Person<T1, T2>&p) 
{
	cout << "类外实现---姓名:" << p.m_Name << "年龄:" << p.m_Age << endl;
}
template<class T1,class T2>
class Person 
{
	//1、友元函数 类内实现
	friend void printPerson(Person<T1, T2>&p)
	{
		cout << "姓名:" << p.m_Name << "年龄:" << p.m_Age << endl;
	}
	//2、友元函数 类外实现
	friend void printPerson2<>(Person<T1, T2>&p);
	friend void printPerson3<>(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;
};
template<class T1,class T2>
void printPerson2(Person<T1, T2>&p)
{
	cout << "类外实现---姓名:" << p.m_Age << "年龄:" << p.m_Age << endl;
}
void test01() 
{
	Person<string, int>p("Tom", 100);
	printPerson(p);
	printPerson2(p);
	printPerson3(p);
}
int main(void)
{
	test01();
	system("pause");
	return EXIT_SUCCESS;
}

在这里插入图片描述

12 类模板的应用

设计一个数组模板类(MyArray),完成对不同类型元素的管理。
代码如下
myArray.hpp

#pragma  once 
#define _CRT_SECURE_NO_WARNINGS
#include<iostream>
using namespace std;

template<class T>
class MyArray
{
public:
	//MyArray(){};

	//有参构造
	MyArray(int capacity)
	{
		this->m_Capacity = capacity;
		this->m_Size = 0;
		this->pAddress = new T[this->m_Capacity];
	}

	//拷贝构造
	MyArray(const MyArray & arr)
	{
		this->m_Capacity = arr.m_Capacity;
		this->m_Size = arr.m_Size;
		this->pAddress = new T[this->m_Capacity];
		for (int i = 0; i < arr.m_Size; i++)
		{
			this->pAddress[i] = arr.pAddress[i];
		}
	}

	//重载=   
	MyArray& operator=(const MyArray & arr)
	{
		if (this->pAddress)
		{
			delete[] this->pAddress;
			this->pAddress = NULL;
		}

		this->m_Capacity = arr.m_Capacity;
		this->m_Size = arr.m_Size;
		this->pAddress = new T[this->m_Capacity];
		for (int i = 0; i < arr.m_Size; i++)
		{
			this->pAddress[i] = arr.pAddress[i];
		}
		return *this;
	}


	//重载[] 
	T& operator[] (int index)
	{
		return this->pAddress[index];
	}

	//尾插法
	void pushBack(const T&val)
	{
		if (this->m_Capacity == this->m_Size)
		{
			return;
		}
		this->pAddress[this->m_Size] = val;
		this->m_Size++;
	}

	//获取数组容量
	int getCapacity()
	{
		return this->m_Capacity;
	}

	//获取数组大小
	int getSize()
	{
		return this->m_Size;
	}

	//析构
	~MyArray()
	{
		if (this->pAddress)
		{
			delete[] this->pAddress;
			this->pAddress = NULL;
		}
	}

private:
	T * pAddress; //指向堆区真实数组指针

	int m_Capacity; //数组容量

	int m_Size;  //数组大小

};

test.cpp

#define _CRT_SECURE_NO_WARNINGS
#include<iostream>
using namespace std;
#include "myArray.hpp"
#include <string>

class Person
{
public:
	Person() {};
	Person(string name, int age)
	{
		this->m_Name = name;
		this->m_Age = age;
	}

	string m_Name;
	int m_Age;
};

void myPrintInt(MyArray <int> &myIntArr)
{

	for (int i = 0; i < myIntArr.getSize(); i++)
	{
		cout << myIntArr[i] << endl;
	}
}

void test01()
{
	MyArray <int> myIntArr(100);
	for (int i = 0; i < 10; i++)
	{
		myIntArr.pushBack(i + 100);
	}
	myPrintInt(myIntArr);
}

void myPrintPerson(MyArray<Person> &myPersonArr)
{
	for (int i = 0; i < myPersonArr.getSize(); i++)
	{
		cout << "姓名: " << myPersonArr[i].m_Name << " 年龄:" << myPersonArr[i].m_Age << endl;
	}
}

void test02()
{
	MyArray<Person> myPersonArr(100);
	Person p1("孙悟空", 1000);
	Person p2("猪八戒", 800);
	Person p3("唐僧", 500);
	Person p4("沙悟净", 300);
	Person p5("白龙马", 10000);

	myPersonArr.pushBack(p1);
	myPersonArr.pushBack(p2);
	myPersonArr.pushBack(p3);
	myPersonArr.pushBack(p4);
	myPersonArr.pushBack(p5);

	myPrintPerson(myPersonArr);

	cout << "数组容量: " << myPersonArr.getCapacity() << endl;
	cout << "数组大小: " << myPersonArr.getSize() << endl;
}

int main() {

	//test01();
	test02();

	system("pause");
	return EXIT_SUCCESS;
}

在这里插入图片描述

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值