我编写了以下代码来帮助将模板函数限制为某些类型,并在使用其他类型时使用有意义的错误消息。我从stackoverflow中的另一个问题得到了这个想法,我仍然无法发表评论,因为我是新来的。
宏在Linux GCC下完美编译,但在Visual Studio 2012中没有。
#include <string>
#include <iostream>
#include <vector>
#include <cassert>
#include <type_traits>
#define ISALLOWED(DerivedT) (std::is_same<T, DerivedT>::value)||(std::is_base_of<T,DerivedT>::value)
#define FE_1(WHAT, X) WHAT(X)
#define FE_2(WHAT, X, ...) WHAT(X) || FE_1(WHAT, __VA_ARGS__)
#define FE_3(WHAT, X, ...) WHAT(X) || FE_2(WHAT, __VA_ARGS__)
#define FE_4(WHAT, X, ...) WHAT(X) || FE_3(WHAT, __VA_ARGS__)
#define FE_5(WHAT, X, ...) WHAT(X) || FE_4(WHAT, __VA_ARGS__)
#define FE_6(WHAT, X, ...) WHAT(X) || FE_5(WHAT, __VA_ARGS__)
//... repeat as needed
#define GET_MACRO(_1,_2,_3,_4,_5,_6,NAME,...) NAME
#define FOR_EACH(action,...) \
GET_MACRO(__VA_ARGS__,FE_6,FE_5,FE_4,FE_3,FE_2,FE_1)(action,__VA_ARGS__)
// this is where you need to add types
#define ASSERTIOTYPES \
static_assert(FOR_EACH(ISALLOWED,\
int,double,std::string\
),"Type not defined for this template.");
template<class T> std::ostream & operator<<(std::ostream &os,
const std::vector<T> & v) {
ASSERTIOTYPES;
os << "[";
for (size_t i = 0; i < v.size(); i++) {
os << v[i];
if (i != v.size() - 1)
os << ", ";
}
os << "]";
return os;
}
错误消息是: 错误C2977:'std :: is_same':模板参数太多
只有当我使用多种类型定义ASSERTIOTYPES时,它才出现,但是当它只用一种类型定义时,例如:
#define ASSERTIOTYPES \
static_assert(FOR_EACH(ISALLOWED,\
int\
),"Type not defined for this template.");
......代码正常编译。
知道如何解决这个问题吗?
答案 0 :(得分:7)
template<typename T> struct is_io_type : std::false_type {};
template<> struct is_io_type<int> : std::true_type {};
template<> struct is_io_type<double> : std::true_type {};
template<> struct is_io_type<std::string> : std::true_type {};
然后,只需输入:
,而不是宏static_assert( is_io_type<T>::value, "Type not defined for this template." )
这是一个冗长而且几乎不模糊或难以弄清楚到底发生了什么。
现在,假设我们确实需要is_base_of
功能。
template<typename T,typename=void> struct is_io_type : std::false_type {};
template<> struct is_io_type<int,void> : std::true_type {};
template<typename T> struct is_io_type<T,typename std::enable_if<std::is_base_of<int, T>::type> : std::true_type {};
template<> struct is_io_type<double,void> : std::true_type {};
template<typename T> struct is_io_type<T,typename std::enable_if<std::is_base_of<double, T>::type> : std::true_type {};
template<> struct is_io_type<std::string,void> : std::true_type {};
template<typename T> struct is_io_type<T,typename std::enable_if<std::is_base_of<std::string, T>::type> : std::true_type {};
非常详细。
但是,我们可以使用宏来构建上述类型的特征特化,而不是在我们使用宏的位置创建一个变量宏扩展。
首先创建你的类型特征,然后扩展它:
CREATE_TYPE_CATEGORY( is_io_type );
ADD_BASE_TYPE_CATEGORY( is_io_type, int );
ADD_BASE_TYPE_CATEGORY( is_io_type, double );
ADD_BASE_TYPE_CATEGORY( is_io_type, std::string );
将上面的代码写得更简洁一点。它还支持分布式特征修改:如果有人创建了一个应该是is_io_type
的新类型,他们可以在引入类型后使用上面的宏,并且它(及其后代)成为io类型。
答案 1 :(得分:0)
根据您描述的问题,很可能是 VA_ARGS
的错误我建议您使用静态内联,也可以编写简单的测试。复制上面的大部分代码,检查GET_MACRO给你的内容。然后你可以发布结果,这将对进一步的诊断非常有帮助。