C++ 8 学习笔记

1 文件操作

在这里插入图片描述

1.1 文本文件

1.1.1 写文件

在这里插入图片描述
在这里插入图片描述


#include<fstream>//头文件包含

//文本文件 写文件
void test01()
{
	//1、包含头文件 fstream

	//2、创建流对象
	ofstream ofs;

	//3、指定打开方式
	ofs.open("test.txt", ios::out);

	//4、写内容
	ofs << "姓名:张三" << endl;
	ofs << "性别:男" << endl;
	ofs << "年龄:18" << endl;	

	//5、关闭文件
	ofs.close();
}
int main()
{
	test01();
	return 0;
}

在这里插入图片描述

1.1.2 读文件

在这里插入图片描述

#include<fstream>
//文本文件 读文件
void test01()
{
	//1、包含头文件

	//2、创建流对象
	ifstream ifs;
	//3、打开文件 并且判断是否打开成功
	ifs.open("test.txt", ios::in);

	if (!ifs.is_open())
	{
		cout << "文件打开失败" << endl;
		return;
	}
	//4、读数据

	第一种
	//char buf[1024] = { 0 };
	//while (ifs >>buf)
	//{
	//	cout << buf << endl;
	//}
	// 第二种
	/*char buf[1024] = { 0 };
	while (ifs.getline(buf,sizeof(buf)))
	{
		cout << buf << endl;
	}*/
	//第三种
	/*string buf;

	while (getline(ifs, buf))
	{
		cout << buf << endl;
	}*/
	//第四种
	char c;
	while ((c = ifs.get()) != EOF)  //EOF end of file
	{
		cout << c ;
	}
	//5、关闭文件
	ifs.close();
}

int main()
{
	test01();
	return 0;
}

在这里插入图片描述

1.2 二进制文件

在这里插入图片描述

1.2.1 写文件

在这里插入图片描述

#include<fstream>
//二进制文件 写文件
class Person
{
public:
	char m_Name[64];//姓名
	int m_Age;//年龄
};

void test01()
{
	//1、包含头文件
	
	//2、创建流对象
	ofstream ofs("person.txt", ios::out | ios::binary);
	//3、打开文件
	//ofs.open("person.txt",ios::out | ios::binary)
	//4、写文件
	Person p = { "张三",18 };
	ofs.write((const char*)&p, sizeof(Person));
	//5、关闭文件
	ofs.close();
}
int main()
{
	test01();
	return 0;
}

在这里插入图片描述

1.2.2 读文件

在这里插入图片描述

#include<fstream>
class Person
{
public:
	char m_Name[64];//姓名
	int m_Age;//年龄
};


//二进制文件 读文件
void test01()
{
	//1、包含头文件

	//2、创建流对象
	ifstream ifs;
	//3、打开文件   判断文件是否打开成功
	ifs.open("person.txt", ios::in | ios::binary);
	if (!ifs.is_open())
	{
		cout << "文件打开失败" << endl;
		return;
	}
	//4、读文件
	Person p;
	ifs.read((char*)&p, sizeof(Person));
	
	cout << "姓名:" << p.m_Name << " 年龄:" << p.m_Age << endl;
	//5、关闭文件
	ifs.close();
}

在这里插入图片描述

2 模板

2.1 模板的概念

在这里插入图片描述

2.2 函数模板

在这里插入图片描述

2.2.1 函数模板语法

在这里插入图片描述

#include<iostream>
using namespace std;

//函数模板

//交换两个整型函数
void swapInt(int& a, int& b)
{
	int temp = a;
	a = b;
	b = temp;
}

//交换两个浮点型函数
void swapDouble(double& a, double& b)
{
	double temp = a;
	a = b;
	b = temp;
}

//函数模板
template<typename T> // 声明一个模板,告诉编译器后面代码中紧跟着的T不要报错,T是一个通用数据类型
void mySwap(T& a, T& b)
{
	T temp = a;
	a = b;
	b = temp;
}
void test01()
{
	int a = 10;
	int b = 20;
	//swapInt(a, b);
	//利用函数模板交换
	//两种方式使用函数模板
	//1、自动类型推导
	//mySwap(a, b);
	//2、显示指定类型
	mySwap<int>(a, b);
	
	cout << "a=" << a << endl;
	cout << "b=" << b << endl;

	/*double c = 1.1;
	double d = 2.2;
	swapDouble(c, d);
	cout << "c=" << c << endl;
	cout << "d=" << d << endl;*/

}
int main()
{
	test01();

	return 0;
}

在这里插入图片描述

2.2.2 函数模板注意事项

在这里插入图片描述

#include<iostream>
using namespace std;

//函数模板注意事项
template<class T>//typename可以替换成class
void mySwap(T& a, T& b)
{
	T temp = a;
	a = b;
	b = temp;
}
//1、自动类型推导,必须推导出一致的数据类型T才可以使用
void test01()
{
	int a = 10;
	int b = 20;
	char c = 'c';
	//mySwap(a, b);//正确
	//mySwap(a, c);//错误!//推导不出一致的T类型
	cout << "a=" << a << endl;
	cout << "b=" << b << endl;
}
//2、模板必须要确定出T的数据类型,才可以使用
 template<class T>
 void func()
 {
	 cout << "func 调用" << endl;
 }
 void test02()
 {
	 func<int>();
 }
int main()
{
	//test01();
	test02();

	return 0;
}

在这里插入图片描述

2.2.3 测试
#include<iostream>
using namespace std;

//实现通用  对数组进行排序的函数
//规则 从大到小
//算法 选择
//测试 char 数组、 int 数组

//交换函数模板
template<class T>
void mySwap(T& a, T& b)
{
	T temp = a;
	a = b;
	b = temp;
}
//排序算法
template<class 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++)
		{
			//认定的最大值 比 遍历出的数值 小,说明 j下标的元素才是真正的最大值
			if (arr[max] < arr[j])
			{
				max = j;//更新最大值下标
			}
		}
		if (max != i)
		{
			//交换max和i元素
			mySwap(arr[max], arr[i]);
		}
	}
}

//提供打印数组模板
template<class T>
void printArray(T arr[], int len)
{
	for (int i = 0; i < len; i++)
	{
		cout << arr[i] << " ";
	}
	cout << endl;
}
void test01()
{
	//测试char数组
	char charArr[] = "badcfe";
	int num = sizeof(charArr) / sizeof(char);
	mySort(charArr, num);
	printArray(charArr, num);
}

void test02()
{
	//测试int数组
	int intArr[] = { 7,5,1,3,2,4,6,8 };
	int num = sizeof(intArr) / sizeof(int);
	mySort(intArr, num);
	printArray(intArr, num);
}
int main()
{
	//test01();
	test02();

	return 0;
}
2.2.4 普通函数与函数模板区别

在这里插入图片描述

#include<iostream>
using namespace std;

//普通函数与函数模板区别

//1、普通函数调用可以发生隐式类型转换
//2、函数模板 用自动类型推导,不可以发生隐式类型转换
//3、函数模板 用显示指定类型,可以发生隐式类型转换

//普通函数
int myAdd01(int a, int b)
{
	return a + b;
}

//函数模板
template<class T>
T myAdd02(T a, T b)
{
	return a + b;
}
void test01()
{
	int a = 10;
	int b = 20;
	char c = 'c';// a-97  c-99
	cout << myAdd01(a, c) << endl;

	//自动类型推导
	//cout << myAdd02(a, c) << endl;

	//显示指定类型
	cout << myAdd02<int>(a, c) << endl;
}
int main()
{
	
	test01();
	return 0;
}
2.2.5 普通函数与函数模板调用规则

在这里插入图片描述

在这里插入代码片
```#include<iostream>
using namespace std;

//普通函数与函数模板调用规则
//1、如果函数模板和普通函数都可以调用,优先调用普通函数
//2、可以通过空模板参数列表 强制调用 函数模板
//3、函数模板可以发生函数重载
//4、如果函数模板可以产生更好的匹配,优先调用函数模板

void myPrint(int a, int b)
{
	cout << "调用的普通函数" << endl;
}
template<class T>
void myPrint(T a, T b)
{
	cout << "调用的模板" << endl;
}
template<class 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);

	//myPrint(a, b, 100);

	//如果函数模板产生更好的匹配,优先调用函数模板
	char c1 = 'a';
	char c2 = 'b';
	myPrint(c1, c2);
}
int main()
{
	
	test01();
	return 0;
}

2.2.6 模板的局限性

在这里插入图片描述

#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;
	}
	else
	{
		return false;
	}
}

//利用具体化Person的版本实现代码,具体化优先调用
template<> bool myCompare(Person& p1, Person& p2)
{
	if (p1.m_Name == p2.m_Name && p1.m_Age == p2.m_Age)
	{
		return true;
	}
}
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;
}

在这里插入图片描述

2.3 类模板

2.3.1 类模板语法

在这里插入图片描述

#include<iostream>
using namespace std;
#include<string>

//类模板
template<class NameType,class AgeType>
class Person
{
public:
	Person(NameType name, AgeType age)
	{
		this->m_Name = name;
		this->m_Age = age;
	}
	void showPerson()
	{
		cout << "name:" << 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;
}
2.3.2 类模板与函数模板区别

在这里插入图片描述

#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 << "name:" << this->m_Name<< " age =" << this->m_Age << endl;
	}
	NameType m_Name;
	AgeType m_Age;
};
//1、 类模板没有自动类型推导使用方式
void test01()
{
	//Person p("孙悟空",1000); 错误,无法用自动类型推导
	Person<string, int>p("孙悟空", 1000);  // 正确,只能用显示指定类型
	p.showPerson();
}
//2、 类模板在模板参数列表中可以有默认参数
void test02()
{
	Person<string>p("猪八戒", 999);
	p.showPerson();
}
int main()
{
	//test01();
	test02();
	return 0;
}
2.3.3 类模板中成员函数创建时机

在这里插入图片描述

//类模板中成员函数创建时机
//类模板中成员函数在调用时才去创建

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 func1()
	{
		obj.showPerson1();
	}
	void func2()
	{
		obj.showPerson2();
	}
};
void test01()
{
	Myclass<Person2>m;
	//m.func1();
	m.func2();
}
int main()
{
	test01();
	return 0;
}
2.3.4 类模板对象做函数参数

在这里插入图片描述

//类模板对象做函数参数

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 printPerson1(Person<string, int>& p)
{
	p.showPerson();
}
void test01()
{
	Person<string, int>p("孙悟空", 100);
	printPerson1(p);
}
//2、参数模板化
template<class T1,class T2>
void printPerson2(Person<T1, T2>&p)
{
	p.showPerson();
	cout << "T1的类型为:" << typeid(T1).name() << endl;
	cout << "T2的类型为:" << typeid(T2).name() << endl;
}
void test02()
{
	Person<string, int>p("猪八戒", 90);
	printPerson2(p);
}
//3、整个类模板化
template<class T>
void printPerson3(T& p)
{
	p.showPerson();
	cout << "T的数据类型为:" << typeid(T).name() << endl;
}
void test03()
{
	Person<string, int>p("唐僧", 30);
	printPerson3(p);
}
int main()
{
	//test01();
	//test02();
	test03();
	return 0;
}
2.3.5 类模板与继承

在这里插入图片描述

//类模板与继承

template<class T>
class Base
{
	T m;
};
//class Son :public Base//错误,必须知道父类中的T类型,才能继承给子类
class Son:public Base<int>
{
};
void test01()
{
	Son s1;
}
//如果想灵活指定父类中T类型,子类也需要变类模板
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()
{
	
	test02();
	return 0;
}
2.3.6 类模板成员函数类外实现

在这里插入图片描述

//类模板成员函数类外实现
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", 20);
	P.showPerson();
}
int main()
{
	test01();
	
	return 0;
}

在这里插入图片描述

2.3.7 类模板分文件编写

在这里插入图片描述
Person.hpp

#pragma once
#include<iostream>
using namespace std;
#include<string>

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;
}
#include<iostream>
using namespace std;
#include<string>

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

//第一种解决方式,直接包含 源文件
//#include"Person.cpp"

//第二种解决方式,将.h和.cpp的内容写到一起,将后缀名改为.hpp文件

#include"Person.hpp"



void test01()
{
	Person<string, int>p("Jerry", 18);
	p.showPerson();
}
int main()
{
	test01();
	
	return 0;
}

在这里插入图片描述

2.3.8 类模板与友元

在这里插入图片描述

#include<iostream>
using namespace std;
#include<string>

//通过全局函数  打印Person信息

//提前让编译器知道Person类存在
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;
};



int main()
{
	
	
	return 0;
}
2.3.9 类模板案例

在这里插入图片描述
MyArray.hpp

//自己的通用的数组类
#pragma once
#include<iostream>
using namespace std;

template<class T>
class MyArray
{
public:
	//有参构造  参数  容量
	MyArray(int capacity)
	{
		cout << "MyArray有参构造调用";
		this->m_Capacity = capacity;
		this->m_Size = 0;
		this->pAddress = new T[this->m_Capacity];
	}
	
	//拷贝构造
	MyArray(const MyArray& arr)
	{
		cout << "MyArray拷贝构造调用";
		this->m_Capacity = arr.m_Capacity;
		this->m_Size = arr.m_Size;
		//this->pAddress =arr.pAddress;

		//深拷贝
		this->pAddress = new T[arr.m_Capacity];
		//将arr中的数据拷贝过来
		for (int i = 0; i < this->m_Size; i++)
		{
			this->pAddress[i] = arr.pAddress[i];
		}
	}
		//operator = 防止浅拷贝问题
		MyArray& operator=(const MyArray& arr)
		{
			cout << "MyArray 的 operator=调用";
			//先判断原来堆区是否有数据,如果有先释放
			if (this->pAddress != NULL)
			{
				delete[]this->pAddress;
				this->pAddress = NULL;
				this->m_Capacity = 0;
				this->m_Size = 0;
			}
			//深拷贝
			this->m_Capacity = arr.m_Capacity;
			this->m_Size = arr.m_Size;
			this->pAddress = new T[arr.m_Capacity];
			for (int i = 0; i < this->m_Size; i++)
			{
				this->pAddress[i] = arr.pAddress[i];
			}
			return *this;
		}
		//析构函数
		~MyArray()
		{
			if (this->pAddress != NULL)
			{
				cout << "MyArray析构函数调用";
				delete[] this->pAddress;
				this->pAddress = NULL;
			}
		}
	
private:
	T* pAddress;//指针指向堆区开辟的真实数组

	int m_Capacity;//数组容量

	int m_Size;//数组大小
};

源.cpp

#include<iostream>
using namespace std;
#include<string>
#include"MyArray.hpp"

void test01()
{
	MyArray<int>arr1(5);

	MyArray<int>arr2(arr1);

	MyArray<int>arr3(100);
	arr3 = arr1;

}


int main()
{
	
	test01();
	return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值