带有模板类型的模板化模板参数列表

发布于 2024-10-29 00:59:18 字数 1252 浏览 1 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

赤濁 2024-11-05 00:59:18

这似乎是 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文