头文件 mycomputationclass.h
#pragma once
template<typename numberType, bool increaseByOne>
class MyComputationClass
{
numberType a = 1;
numberType b = 2;
numberType compute();
};
#include #include mycomputationclass.hpp
hpp:
#pragma once
#include mycomputationclass.h
template<typename numberType, bool increaseByOne>
numberType MyComputationClass<numberType, increaseByOne>::compute()
{
return a + b;
}
template<typename numberType>
numberType MyComputationClass<numberType, true>::compute()
{
return a + b + 1;
}
error:
error: invalid use of incomplete type ‘class MyComputationClass<numberType, true>’
numberType MyComputationClass<numberType, true>::compute()
^
我发现与模板特化相关的所有主题都仅使用一个模板。 有人可以在这里帮我吗?
问题来源:stackoverflow
首先,请参阅 为什么只能在头文件中实现模板(阿里云社区地址)
为什么只能在头文件中实现模板(stackoverflow地址) 现在,您的问题并非来自上述问题,但是,您仍应需要考虑是否要在cpp文件中实现模板。 我怀疑你没有。
无论如何,您要问的问题是您试图定义一个尚未模板特化的专门类模板的方法。
下面有两个选择。 - 您可以特化类模板,重复整个过程
template<typename numberType>
class MyComputationClass<numberType, true>
{
numberType a = 1;
numberType b = 2;
numberType compute();
};
if constexpr
:template<typename numberType, bool increaseByOne>
numberType MyComputationClass<numberType, increaseByOne>::compute()
{
if constexpr (increateByOne)
return a + b + 1;
else
return a + b;
}
template<typename numberType, bool increaseByOne>
class MyComputationClass
{
numberType a = 1;
numberType b = 2;
numberType compute() requires increaseByOne
{
return a + b + 1;
};
numberType compute() requires (!increaseByOne)
{
return a + b;
};
};
回答来源:stackoverflow
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。