c++ - 模板类的方法取决于模板参数

标签 c++ c++11 templates

我正在编写一个旨在拍摄随机 3D vector 的类,但我在我的项目中使用了几个几何库(一个包含在 3D 模拟中,一个包含在分析框架中,一个不包含在超过 - 1 GB 框架...)。这些库中的每一个都有自己的 vector 定义,同一方法具有不同的名称,例如 getX()、GetX()、Get(0)... 用于获取第一个笛卡尔坐标。但有时会采用通用的命名约定,并且某些方法名称在两个或多个库中是相同的。
当然,我想将此代码用于任何这些 vector ,因此我实现了一个模板类。问题如下:如何使我的代码适应所有这些方法名称,而不为每个实现专门化我的类(有些共享相同的方法名称)?
我设法使用一种方法或另一种方法编写了一个类,现在我想推广到任意数量的方法。内容如下:“如果您有方法 1,请使用此实现,如果您有方法 2,请使用另一个实现,...如果您没有,则编译错误”。

目前该类看起来像(减少到随机方向拍摄的部分):

// First some templates to test the presence of some methods
namespace detail_rand {
  // test if a class contains the "setRThetaPhi" method
  template<class T>
  static auto test_setRThetaPhi(int) -> 
    decltype(void(std::declval<T>().setRThetaPhi(0.,0.,0.)),
             std::true_type{});

  template<class T>
  static auto test_setRThetaPhi(float)->std::false_type;
}

// true_type if the class contains the "setRThetaPhi" method
template<class T>
struct has_setRThetaPhi : decltype(detail_rand::test_setRThetaPhi<T>(0)) {};


// The actual class
template<class vector>
class Random
{
// everything is static for easy use, might change later
private:
  Random() = delete;
  Random(Random&) = delete;

  // the distribution, random generator and its seed
  static decltype(std::chrono::high_resolution_clock::now().time_since_epoch().count()) theSeed;
  static std::default_random_engine theGenerator;
  static std::uniform_real_distribution<double> uniform_real_distro;

// Shoot a direction, the actual implementation is at the end of the file
private: // the different implementations
  static const vector Dir_impl(std::true_type const &);
  static const vector Dir_impl(std::false_type const &);

public: // the wrapper around the implementations
  inline static const vector Direction() {
    return Dir_impl(has_setRThetaPhi<vector>());
  }
};


/// initialisation of members (static but template so in header)
// the seed is not of cryptographic quality but here it's not relevant
template<class vector> 
decltype(std::chrono::high_resolution_clock::now().time_since_epoch().count())
Random<vector>::theSeed = 
  std::chrono::high_resolution_clock::now().time_since_epoch().count();

template<class vector>
std::default_random_engine Random<vector>::theGenerator(theSeed);

template<class vector>
std::uniform_real_distribution<double> Random<vector>::uniform_real_distro(0.,1.);


/// Implementation of method depending on the actual type of vector
// Here I use the "setRThetaPhi" method
template<class vector>
const vector Random<vector>::Dir_impl(std::true_type const &)
{
  vector v;
  v.setRThetaPhi(1.,
                 std::acos(1.-2.*uniform_real_distro(theGenerator)),
                 TwoPi()*uniform_real_distro(theGenerator));
  return std::move(v);
}

// Here I use as a default the "SetMagThetaPhi" method
// but I would like to test before if I really have this method,
// and define a default implementation ending in a compilation error
// (through static_assert probably)
template<class vector>
const vector Random<vector>::Dir_impl(std::false_type const &)
{
  vector v;
  v.SetMagThetaPhi(1.,
                   std::acos(1.-2.*uniform_real_distro(theGenerator)),
                   TwoPi()*uniform_real_distro(theGenerator));
  return std::move(v);
}

最佳答案

Something which says: "If you have method 1, use this implementation, if you have method 2, use this other one,... and if you have none, then compilation error".

我写了一篇文章,解释了如何在 C++11、C++14 和 C++17 中准确实现您所需的功能:"checking expression validity in-place with C++17"

我将综合下面的 C++11 和 C++14 解决方案 - 您可以使用它们将您正在处理的所有接口(interface)包装在一个“通用”接口(interface)中来标准化。然后,您可以在“通用”接口(interface)上实现您的算法。


假设您有:

struct Cat { void meow() const; };
struct Dog { void bark() const; };

并且您想要创建一个函数模板 make_noise(const T& x) 如果有效,则调用 x.meow(),否则 x.bark() 如果有效,否则会产生编译器错误。


在 C++11 中,您可以使用 enable_ifdetection idiom

您需要为每个您想要检查其存在的成员创建一个类型特征。示例:

template <typename, typename = void>
struct has_meow : std::false_type { };

template <typename T>
struct has_meow<T, void_t<decltype(std::declval<T>().meow())>>
    : std::true_type { };

这是一个使用 enable_if尾随返回类型的用法示例 - 此技术利用 expression SFINAE .

template <typename T>
auto make_noise(const T& x)
    -> typename std::enable_if<has_meow<T>{}>::type
{
    x.meow();
}

template <typename T>
auto make_noise(const T& x)
    -> typename std::enable_if<has_bark<T>{}>::type
{
    x.bark();
}

在 C++14 中,您可以使用通用 lambdastatic_if 的实现(这里有 talk I gave at CppCon 2016 关于可能的实现)> 使用类似命令式的语法执行检查。

您需要一些实用程序:

// Type trait that checks if a particular function object can be 
// called with a particular set of arguments.
template <typename, typename = void>
struct is_callable : std::false_type { };

template <typename TF, class... Ts>
struct is_callable<TF(Ts...),
    void_t<decltype(std::declval<TF>()(std::declval<Ts>()...))>>
    : std::true_type { };

// Wrapper around `is_callable`.
template <typename TF>
struct validity_checker
{
    template <typename... Ts>
    constexpr auto operator()(Ts&&...) const
    {
        return is_callable<TF(Ts...)>{};
    }
};

// Creates `validity_checker` by deducing `TF`.
template <typename TF>
constexpr auto is_valid(TF)
{
    return validity_checker<TF>{};
}

之后,您可以在 make_noise 的单个重载中执行所有检查:

template <typename T>
auto make_noise(const T& x)
{
    auto has_meow = is_valid([](auto&& x) -> decltype(x.meow()){ });
    auto has_bark = is_valid([](auto&& x) -> decltype(x.bark()){ });

    static_if(has_meow(x))
        .then([&x](auto)
            {
                x.meow();
            })
        .else_if(has_bark(x))
        .then([&x](auto)
            {
                x.bark();
            })
        .else_([](auto)
            {
                // Produce a compiler-error.
                struct cannot_meow_or_bark;
                cannot_meow_or_bark{};
            })(dummy{});
}

一些宏黑魔法if constexpr允许您在C++17中编写此代码:

template <typename T>
auto make_noise(const T& x)
{
    if constexpr(IS_VALID(T)(_0.meow()))
    {
        x.meow();
    }
    else if constexpr(IS_VALID(T)(_0.bark()))
    {
        x.bark();
    }
    else
    {
        struct cannot_meow_or_bark;
        cannot_meow_or_bark{};
    }
}

关于c++ - 模板类的方法取决于模板参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43211408/

相关文章:

c++ - 带有标准容器的 unique_ptr : attempting to reference a deleted function

支持所有 C++11 并发功能的 C++ 编译器?

c++ - unique_ptr 之外的数组模板语法

c++ - 如何根据模板参数更改值?

c++ - 调整 QOpenGLTexture 的大小并保留属性

c++ - 不能使用类引用作为非类型模板参数

c++ - 如何定义采用相同参数类型五次的函数类型

c++ - stdio 总是设置 errno 吗?

C++ OpenCV Mat 像素值和 Opencv 错误

java - 来自多个来源的 Spring MVC 复杂模型填充