如何为以相同方式使用的功能集提供统一的接口?为了说明,请查看给定库函数的集合:
/* existing library functions */
/* the signatures are different: some return int, some float */
/* set of input related functions */
int getInputValue() { return 42; }
size_t getInputSize() { return 1; }
/* set of output related functions */
int getOutputValue() { return 21; }
size_t getOutputSize() { return 1; }
/* set of parameter related functions */
float getParameterValue() { return 3.14; }
size_t getParameterSize() { return 1; }
并假设它们以相同的方式使用:
if (getSize() > 0) {
T value = getValue()
A)提供getSize()
和getValue()
的好方法是什么?
我首先虽然Template Method Pattern是我想要的,但我无法应用它,因为与模板方法模式中的工作者相比,我的函数有不同的签名。
所以我做了什么:
/* I want to provide a uniform interface */
/* the specific part of inputs, outputs and parameters is in the traits */
struct input_traits {
typedef int value_type;
static int getValue() { return getInputValue(); }
static size_t getSize() { return getInputSize(); }
};
struct output_traits {
typedef int value_type;
static int getValue() { return getOutputValue(); }
static size_t getSize() { return getOutputSize(); }
};
struct parameter_traits {
typedef float value_type;
static float getValue() { return getParameterValue(); }
static size_t getSize() { return getParameterSize(); }
};
/* the common part (they are used in the same way) is in the Helper */
template<typename traits>
class CommonUsage {
public:
void use()
{
if (traits::getSize() > 0) {
typename traits::value_type value = traits::getValue();
}
}
};
int main()
{
CommonUsage<input_traits>().use();
CommonUsage<output_traits>().use();
CommonUsage<parameter_traits>().use();
}
B)这是一个好方法吗?
答案 0 :(得分:2)
一个。如果我理解你的问题你应该使用抽象类。 查看下一个代码,它基本上与您的代码相同。
我就是这样做的。
#include <iostream>
template <typename value_type>
class Traits {
public:
virtual value_type getValue() const = 0;
virtual size_t getSize() const = 0;
virtual ~Traits() { }
};
class input_traits: public Traits <int>{
public:
virtual int getValue() const {
return 42;
}
virtual size_t getSize() const {
return 1;
}
};
class parameter_traits: public Traits <double>{
public:
virtual double getValue() const {
return 3.14;
}
virtual size_t getSize() const {
return 1;
}
};
class CommonUsage {
public:
template <typename value_type>
void use(const Traits<value_type>& traitsObject) {
if (traitsObject.getSize() > 0) {
std::cout << traitsObject.getValue();
}
}
};
int main() {
CommonUsage().use(parameter_traits());
return 0;
}
答案 1 :(得分:0)
作为用户答案的替代方法(这次使用模板专业化)是:
template <class T>
struct traits {
T getValue() const { throw std::runtime_exception("..."); }
size_t getSize() const { return 0; }
};
template <>
struct traits<int> {
int getValue() const { return 42; }
size_t getSize() const { return 1; }
};
template <>
struct traits<float> {
int getValue() const { return 3.145; }
size_t getSize() const { return 1; }
};
// do template aliasing
using input_traits = traits<int>;
using parameter_traits = traits<float>;
struct CommonUsage {
template <typename T>
static void use(const traits<T> &traits) {
if (traits.getSize() > 0)
std::cout << traits.getValue() << std::endl;
}
};
int main(int arg, char **argv) {
CommonUsage::use(input_traits());
CommonUsage::use(parameter_traits());
}
两种方法都有优点/缺点。如果使用模板特化,则不需要支付虚拟方法的开销。