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

C++类模板写法补充

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

C++类模板写法补充

现有类模板demo,通过分文件编写:

demo.h

#pragma once

template 
class demo{
public:
	demo(T t = 0);
	demo operator+(const demo& other);
	T getT();
private:
	T t;
};

在demo.cpp中,既有类的实现呢,也有主函数接口:

#include "demo.h"
#include

template
demo::demo(T t) {
	this->t = t;
}

template 
demo demo::operator+(const demo& other) {
	demo temp;
	temp = demo(this->t + other.t);
	return demo(temp);
}

template
T demo::getT() {
	return t;
}


int main() {
	demo a(111), b(222);
	demo add = a + b;
	std::cout << add.getT() << std::endl;
	system("pause");
	return 0;
}

运行结果:

将主函数接口从demo.cpp中分开,写在另一个.cpp文件中 。

按照普通类写法,仅包含类的头文件即可。

#include
#include"demo.h"


int main() {
	demo a(111), b(222);
	demo add = a + b;
	std::cout << add.getT() << std::endl;
	system("pause");
	return 0;
}

编译结果:

在此先不做过多探究,主要原因是因为编译器未编译demo.cpp文件 。

解决方法:

将包含demo.h语句改为包含demo.cpp

#include
#include"demo.cpp"


int main() {
	demo a(111), b(222);
	demo add = a + b;
	std::cout << add.getT() << std::endl;
	system("pause");
	return 0;
}

运行结果:

因此,在实际开发中,对于类模板实现文件,一般会命名为.hpp文件。

 

这样遇到.hpp文件便可知道这是一个类模板实现文件 。

main.cpp代码:

#include
#include"demo.hpp"


int main() {
	demo a(111), b(222);
	demo add = a + b;
	std::cout << add.getT() << std::endl;
	system("pause");
	return 0;
}

运行结果相同。


 


 

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

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

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