栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > C/C++/C#

C++数据结构(四)——C++模板

C/C++/C# 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

C++数据结构(四)——C++模板

C++模型
  • 函数模板
  • 函数模板应用
  • 类模板

函数模板
#include
#include
#include

using namespace std;

template 
const Comparable & findMax(const vector & a)
{
	int maxIndex = 0;
	for(int i=1; i < a.size(); i++){
		if(a[maxIndex] < a[i]){
			maxIndex = i;
		}
	}
	return a[maxIndex];
}
int main(){
	vector v1;
	vector v2;
	vector v3;
	
	v1.push_back(3);
	v1.push_back(1);
	v1.push_back(7);
	v1.push_back(2);
	
	v2.push_back(2.3);
	v2.push_back(5.1);
	v2.push_back(1.7);
	v2.push_back(0.2);
	
	v3.push_back("hello");
	v3.push_back(",");
	v3.push_back("world");
	v3.push_back("!");
	cout< 

函数模板应用
#include
#include
#include

using namespace std;

template 
const Comparable & findMax(const vector & a)
{
	int maxIndex = 0;
	for(int i=1; i < a.size(); i++){
		if(a[maxIndex] < a[i]){
			maxIndex = i;
		}
	}
	return a[maxIndex];
}

class Employee
{
	public:
		void setValue(const string &n, double s)
		{
			name = n, salary = s;
		}
		const string & getname() const
		{
			return name;
		}
		void print(ostream & out) const
		{
			out< v(3);
	
	v[0].setValue("G", 400);
	v[1].setValue("B", 200);
	v[2].setValue("D", 130);

	cout< 

类模板
#include

using namespace std;

template 
class MemoryCell
{
	public:
		explicit MemoryCell(const Object & initialValue = Object())
		:storedValue(initialValue){}
		const Object & read() const
		{
			return storedValue;
		}
		void write(const Object & x)
		{
			storedValue = x;
		}
	private:
		Object storedValue;
}; 

int main(){
	MemoryCell m1;
	MemoryCell m2("hello");
	m1.write(37);
	m2.write(m2.read()+"world");
	cout< 

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/691585.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号