gpt4 book ai didi

C++专门化模板类函数而无需重复代码

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:36:21 25 4
gpt4 key购买 nike

我想写 5 个不同的类,每个类都有许多完全相同的成员函数,除了一个是每个类专用的。我可以写这个避免代码重复吗?

问候,阿列克谢斯

下面是我的代码的一个非常简短的版本,它抛出了错误:

template_test.cpp:15:35: error: invalid use of incomplete type ‘class impl_prototype<cl, 1>

#include <iostream>
using namespace std;

template <int cl, int dim>
class impl_prototype {
public:
impl_prototype() {}

int f(int x) { return cl + 2 * g(x); }
int g(int x) { return cl + 1 * x;}

};

template <int cl>
int impl_prototype<cl, 1>::g(int x) { return cl + 3 * x; }

int main ()
{
impl_prototype<0, 0> test_0;
impl_prototype<0, 1> test_1;


cout << test_0.f(5) << " " << test_0.g(5) << std::endl;
cout << test_1.f(5) << " " << test_1.g(5) << std::endl;


return 0;
}

最佳答案

类模板的成员函数可以显式特化,但不能部分特化。

只需创建一个您可以部分特化的辅助函数对象:

#include <iostream>
using namespace std;

template<int cl, int dim>
struct g_impl
{
int operator()(int x) { return cl + 1 * x;}
};

template<int cl>
struct g_impl<cl, 1>
{
int operator()(int x) { return cl + 3 * x; }
};

然后调用该助手(临时函数对象将被优化掉):

template <int cl, int dim>
class impl_prototype
{
public:
impl_prototype() {}

int f(int x) { return cl + 2 * g(x); }
int g(int x) { return g_impl<cl, dim>()(x); }
};

int main ()
{
impl_prototype<0, 0> test_0;
impl_prototype<0, 1> test_1;


cout << test_0.f(5) << " " << test_0.g(5) << std::endl;
cout << test_1.f(5) << " " << test_1.g(5) << std::endl;


return 0;
}

Live Example

关于C++专门化模板类函数而无需重复代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25119444/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com