带有模板类型的模板化模板参数列表
C++ 允许这样的模板化模板参数:
template <template <bool> class T>
struct something1 {};
Bool 类型可以替换为 typedef(因此不需要原始类型名称出现在声明中):
typedef bool bool_t;
template <template <bool_t> class T>
struct something2 {};
这有效完美,但如果我尝试像这样定义一个嵌套结构:
template <typename Type>
struct enclosing
{
typedef bool bool_t;
typedef Type type_t;
template <template <bool_t> class T>
struct something3 {};
template <template <type_t> class T>
struct something4 {};
};
那么以下代码无法编译:
template <bool Value>
struct param {};
typedef something1<param> x1; // ok
typedef something2<param> x2; // ok
typedef enclosing<bool>::something3<param> x3; // ok
typedef enclosing<bool>::something4<param> x4; // error
这是符合标准的行为,还是我做错了什么?我正在使用 MSVS 2008。
编辑:
我已在 Microsoft 支持论坛上发布了错误报告: 错误报告
C++ allows templated template parameters like this:
template <template <bool> class T>
struct something1 {};
Bool type can be replaced by a typedef (so there is no requirement for the original type name to appear in the declaration):
typedef bool bool_t;
template <template <bool_t> class T>
struct something2 {};
This works perfectly, but if I try to define a nested structure like this:
template <typename Type>
struct enclosing
{
typedef bool bool_t;
typedef Type type_t;
template <template <bool_t> class T>
struct something3 {};
template <template <type_t> class T>
struct something4 {};
};
Then the following code fails to compile:
template <bool Value>
struct param {};
typedef something1<param> x1; // ok
typedef something2<param> x2; // ok
typedef enclosing<bool>::something3<param> x3; // ok
typedef enclosing<bool>::something4<param> x4; // error
Is this a standard compliant behavior, or am I doing something wrong? I am using MSVS 2008.
EDIT:
I've posted a bug report on Microsoft support forums:
Bug Report
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这似乎是 VC++ 中的一个错误;我验证了 VC++ 2010 SP1 中的行为没有变化。我建议在 MS Connect 上发布错误报告,然后在此处发布链接,以便我们对其进行投票。
That appears to be a bug in VC++; I verified that the behavior is unchanged in VC++ 2010 SP1. I recommend posting a bug report on MS Connect then posting the link here so we can vote it up.