(转)vc6中的模板偏特化的一个解决办法
合集下载
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
(转)vc6中的模板偏特化的⼀个解决办法vc6中的模板偏特化
我们都知道,vc6模板不⽀持偏特化。
近⽇偶然⼼⾎来潮,偏要试试在vc6中也来实现⼀些偏特化才能够做到的例⼦。
先做⼀个简单的,求m,n的最⼤公约数。⼀般函数如下:
int gcd(int m, int n)
{
if (n == 0) return m;
return gcd(n, m%n);
}
使⽤模板偏特化(编译期求最⼤公约数)的代码如下:
template <int m, int n>
struct static_gcd
{
enum { value = static<n, m%n>::value };
}
template <int m>
struct static_gcd<m, 0>
{
enum { value = m };
};
由于vc6不⽀持偏特化,这段代码编译不过。不过我们可以绕过这个问题:
template <int m, int n>
struct static_gcd
{
template <int unused>
struct n_traits
{
enum { value = static_gcd<n, m%n>::value };
};
template <>
struct n_traits<0>
{
enum { value = m };
};
enum { value = n_traits<n>::value };
};