gpt4 book ai didi

c++ - 模板别名在模板类模板方法的参数中不起作用

转载 作者:塔克拉玛干 更新时间:2023-11-03 02:03:35 26 4
gpt4 key购买 nike

当我声明参数类型由模板别名指定的模板类的模板方法时,我收到编译错误。如果我将模板类更改为一个类,它会编译。如果我将模板别名替换为实际类型(此处为 Templ ),它也会编译。为什么它不起作用,当它是模板类并且参数类型是模板别名时?

编译器为gcc 4.8.0版(Ubuntu/Linaro 4.8.0-2ubuntu2~12.04)。

template <template <typename T> class Templ>
using Bool = Templ<bool>;

template <typename T>
class Foo {
private:
public:
template<template<typename U> class Templ>
void method(Bool<Templ> boolTempl);
};

template <typename T>
template <template <typename U> class Templ>
void Foo<T>::method(Bool<Templ> boolTempl) {
}

int main() {
Foo<char> foo;
return 0;
}

g++ templTest12.C -o templTest12 -std=c++11
templTest12.C: In substitution of `template<template<class T> class Templ> using Bool = Templ<bool> [with Templ = Templ]':
templTest12.C:17:6: required from `class Foo<char>'
templTest12.C:30:12: required from here
templTest12.C:2:25: error: `template<class U> class Templ' is not a template
using Bool = Templ<bool>;

最佳答案

这似乎是 gcc 4.8.0 中的回归,因为 gcc 4.7.2 确实编译了两个版本而没有错误。标准 14.1/2 明确指出

There is no semantic difference between class and typename in a template-parameter.

关于c++ - 模板别名在模板类模板方法的参数中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16431216/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com