语法帮助。模板函数对象中的模板运算符()

时间:2015-06-18 18:35:30

标签: c++ templates c++11 functor

我需要运行正在尝试在main()下面运行的语法的正确语法是什么?

#include <iostream>
#include <vector>

template <int... Is>
void foo() {
    std::vector<int> v{Is...};
    for (int x : v) std::cout << x << ' ';
}

template <int... Is>
struct Foo {
    template <typename T, typename... Ts>
    void operator()() const {
        std::cout << sizeof(T) << ' ' << sizeof...(Ts) << '\n';
        foo<Is...>();
    }
};

int main() {
//  Foo<0,1,2>()<bool, char, long>();
    Foo<0,1,2> f;
    f<bool, char, long>();  // Won't compile
}

1 个答案:

答案 0 :(得分:5)

我认为您不能手动为运算符重载指定模板参数。但是,你可以写

f.operator()<bool, char, long>();