为什么我不能将数字模板参数传递给我的模板函数



我有一个封装std::tuple("MyTuple"(的自定义类和另一个实现std::tuple自定义接口的类("MyInterface"(。我需要这个单独的接口在代码库中,下面的代码被简化了。

由于std::tuple的元素需要使用关键字作为模板参数来访问,因此接口的函数具有一个数字模板参数size_t Key,然后将其提供给元组的std::get

这个接口工作得很好,但当从另一个传递数字参数的模板函数调用它时就不行了;键":

#include <iostream>
#include <functional>
#include <tuple>
#include <string>
template <typename... Types>
class MyInterface {
public:
MyInterface(const std::tuple<Types...>& tuple) : tuple(tuple) {}
template <size_t Key>
std::string getString() {
return std::to_string(std::get<Key>(tuple));
}
private:
const std::tuple<Types...>& tuple;
};
template <typename... Types>
class MyTuple {
public:
MyTuple(Types... values) : value(std::tuple<Types...>(values...)) {}
template <size_t Key>
std::string asString() {
MyInterface<Types...> interface(value);
return interface.getString<Key>(); // here I get the compiler error
}
private:
std::tuple<Types...> value;
};
int main() {
MyInterface<int, float, long> interface(std::tuple<int, float, long>(7, 3.3, 40));
std::cout << interface.getString<0>() << std::endl; // this works fine
MyTuple<int, float, long> tuple(7, 3.3, 40);
std::cout << tuple.asString<0>() << std::endl;
}

g++的完整输出:

templated_function_parameter_pack.cpp: In member function ‘std::__cxx11::string MyTuple<Types>::asString()’:
templated_function_parameter_pack.cpp:28:39: error: expected primary-expression before ‘)’ token
return interface.getString<Key>(); // here I get the compiler error
^
templated_function_parameter_pack.cpp: In instantiation of ‘std::__cxx11::string MyTuple<Types>::asString() [with long unsigned int Key = 0; Types = {int, float, long int}; std::__cxx11::string = std::__cxx11::basic_string<char>]’:
templated_function_parameter_pack.cpp:40:34:   required from here
templated_function_parameter_pack.cpp:28:33: error: invalid operands of types ‘<unresolved overloaded function type>’ and ‘long unsigned int’ to binary ‘operator<’
return interface.getString<Key>(); // here I get the compiler error

为什么在MyTuple::asString<size_t Key>中调用interface.getString<Key>()的语法无效?

当您想要调用实例的模板方法时,您需要编写以下内容:

return interface.template getString<Key>();

你会在这个答案中找到原因的每一个细节:我必须把";模板";以及";typename";关键词?

相关内容

  • 没有找到相关文章

最新更新