C++常见异常汇总(二): undefined reference to

1、undefined reference to A

  • 检查所有main相关的定义,是否均已定义 A
  • 检查 CMakeList.txt 中,是否包含了所有的 .cpp

2、undefined reference to `vtable

  • 缺少构造、析构函数:请检查是否定义了构造、析构函数(尤其在 .cpp 文件中)
  • 子类中未定义基类 virual func =0 ; 的函数实现
  • CMakeList中,未添加对应的 .cpp 文件
  • 模版函数的定义与实现,未同时定义在头文件中

注意:模版函数,尽量定义与实现一起定义在 头文件中,否则在外部调用时,会报 undefined 的错误。除非在 头文件中,再额外增加一个 显示类型调用此模版函数的 函数。

2.1 模版函数定义方案1: 定义与实现均一起定义在头文件中

Test.h


class A
{
 public:
	template<typename ValueType>
	bool PrintContent(const ValueType &value)
	{
		std::cout << "the value :" << value << std::endl;
		return true;
	}


};

main.cpp


#include “Test.h”

void main()
{
	A a;

	a.PrintContent<std::uint64_t>(12345);
	
	a.PrintContent<std::uint64_t>("Hello Test");
	
}

2.2 模版函数定义方案2: 定义的同一个文件中,显示声明具体类型

Test.h


class A
{
 public:
		template<typename ValueType>
		bool PrintContent(const ValueType &value);
	
};	

template<>
bool A::PrintContent(const std::uint64_t &value);

template<>
bool A::PrintContent(const std::string &value);

Test.cpp


template<typename ValueType>
bool A::PrintContent(const ValueType &value)
{
	std::cout << "the value :" << value << std::endl;
	return true;
}

main.cpp


#include “Test.h”

void main()
{
	A a;

	a.PrintContent<std::uint64_t>(12345);
	
	a.PrintContent<std::uint64_t>("Hello Test");
	
}

3、multiple definition of

通常,.h 文件中,仅进行函数的定义(尤其是纯C函数),不定义函数的实现,除非:	
  • 定义模版函数

  • 定义类成员函数

如果是在需要在.h 文件中定义函数的实现: 可通过增加 inline 修饰的方式

Test.h


	template<typename ValueType>
	inline bool PrintContent(const ValueType &value)
	{
		std::cout << "the value :" << value << std::endl;
		return true;
	}

main.cpp


#include “Test.h”

void main()
{

	PrintContent<std::uint64_t>(12345);
	
	PrintContent<std::uint64_t>("Hello Test");
	
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

牛魔王的小怪兽

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值