为函数调用指定嵌套模板参数
Posted
技术标签:
【中文标题】为函数调用指定嵌套模板参数【英文标题】:specify nested template parameters for function call 【发布时间】:2018-01-30 00:39:12 【问题描述】:调用模板函数时如何指定类型?
#include <string>
#include <utility>
#include <boost/variant.hpp>
template <typename O, typename E, template <typename, typename> class VariantType>
VariantType<O, E> f(O o)
return VariantType<O, E>std::move(o);
int main()
boost::variant<int, std::string> res =
f<int, std::string, boost::variant<int, std::string>>(17);
clang 报这样的错误(clang++ -Wall -std=c++11 test.cpp
):
test.cpp: error: no matching function for call to 'f'
boost::variant<int, std::string> res = f<int, std::string, boost::variant<int, std::string>>(17);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
test.cpp: note: candidate template ignored: invalid explicitly-specified argument for template parameter 'VariantType'
VariantType<O, E> f(O o)
【问题讨论】:
【参考方案1】:boost::variant 模板类模板参数列表的数量不是两个。所以,修复它,例如通过将template <typename, typename>
更改为template <typename...>
:
Live On Coliru
#include <string>
#include <utility>
#include <boost/variant.hpp>
template <typename O, typename E, template <typename...> class VariantType>
VariantType<O, E> f(O o)
return VariantType<O, E>std::move(o);
int main()
boost::variant<int, std::string> res = f<int, std::string, boost::variant>(17);
【讨论】:
【参考方案2】:你没有。将模板模板参数template <typename, typename> class VariantType
声明为f
的第三个模板参数意味着f
的第三个模板参数应该是一个类模板。 boost::variant
是一个模板。 boost::variant<int, std::string>
不再是模板——它是模板的特化。
【讨论】:
所以不可能调用f
这样的函数?
很抱歉,f<int, std::string, boost::variant>
也不起作用。你能告诉我如何修复我的代码吗?
@user1244932 你应该把它作为一个新问题发布。以上是关于为函数调用指定嵌套模板参数的主要内容,如果未能解决你的问题,请参考以下文章
Python函数:函数的定义语法调用参数类型(必选参数缺省参数可选参数关键字可选参数)return返回值函数嵌套