#include <iostream>
struct T1
{
T1() : value(0) { }
const int value;
};
struct T2
{
template <int N>
int value(int n) const
{
return(N + n);
}
};
template <typename T>
int func1(const T & t)
{
/* same as: return((t.value < 3) > 5); */
return(t.value<3>(5));
}
template <typename T>
int func2(const T & t)
{
/* call member template function of T */
return(t. template value<3>(5));
}
int main(int argc, char * argv[])
{
T1 t1;
T2 t2;
std::cout << (t1.value<3>(5)) << std::endl;
std::cout << (t2.value<3>(5)) << std::endl;
std::cout << func1(t1) << std::endl;
// std::cout << func1(t2) << std::endl; // error
// std::cout << func2(t1) << std::endl; // error
std::cout << func2(t2) << std::endl;
return(0);
}
调用模板参数的成员模板的方法:
obj.template mem_template_func<arg_type>(args);

本文通过具体的C++代码示例展示了如何使用模板和成员模板,并解释了如何正确调用它们。提供了两种不同的函数模板来处理带有不同类型的结构体实例。
7254

被折叠的 条评论
为什么被折叠?



