C++模板类型的模板特化
我希望通过使用 BOOST_STATIC_ASSERT 来帮助我的一些模板代码的用户,让他们知道他们使用了不兼容的类型,其编译错误消息比当前使用不兼容类型生成的怪物更简单。
这个例子有点太复杂了,无法在这里重现,但希望这能抓住我想要的本质:
我的问题是如何格式化最后一行,即“模板模板”?
template <typename P1, int P2, typename P3>
class InterestingType
{
}
template<typename T>
struct is_interesting_type{
static const bool value = false;
};
template<template<typename,int,typename> typename InterestingType> //No idea how to format this..
struct is_interesting_type{
static const bool value = true;
};
I'm looking to help users of some of my templated code by using BOOST_STATIC_ASSERT to let them know that they've used an incompatible type with a simpler compile error message than the monster than is currently produced with an incompatible type.
The example is a bit too complex to reproduce here, but hopefully this will capture the essence of what I want:
My question is how to format that last line, a "template template"?
template <typename P1, int P2, typename P3>
class InterestingType
{
}
template<typename T>
struct is_interesting_type{
static const bool value = false;
};
template<template<typename,int,typename> typename InterestingType> //No idea how to format this..
struct is_interesting_type{
static const bool value = true;
};
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将代码更改为
Change the code to