c++ - Pybind - 奇怪的重复模板

标签 c++ templates pybind11

我有以下类结构(我实际实现的简化示例):

/* TestClass.hpp */
#pragma once

template <class Impl>
class CurRecTemplate {
protected:
    CurRecTemplate() {}
    ~CurRecTemplate() {}

    Impl& impl() { return static_cast<Impl&>(*this); }
    const Impl& impl() const { return static_cast<const Impl&>(*this); }
};

template <class Impl>
class BaseClass : public CurRecTemplate<Impl> {
public:
    BaseClass() { };

    template <class FuncType>
    double eval(const FuncType& func, double x) const
    {
        return this->impl().evalImplementation(func, x);
    }
};

class DerivedClass : public BaseClass<DerivedClass> {
public:
    template <class FuncType>
    double evalImplementation(const FuncType& f, double x) const
    {
        return f(x);
    };
};

然后

/* Source.cpp */
#include <pybind11/pybind11.h>
#include "TestClass.hpp"

namespace py = pybind11;

template<typename Impl>
void declare(py::module &m, const std::string& className) {
    using DeclareClass = BaseClass<Impl>;

    py::class_<DeclareClass, std::shared_ptr<DeclareClass>>(m, className.c_str())
        .def(py::init<>())
        .def("eval", &DeclareClass::eval);
}

PYBIND11_MODULE(PyBindTester, m) {
    declare<DerivedClass>(m, "DerivedClass");
}

我粗略地基于这个问题的答案 PyBind11 Template Class of Many Types .但是我得到的错误是:

C2783 'pybind11::class_> &pybind11::class_>::def(const char *,Func &&,const Extra &...)': could not deduce template argument for 'Func' ...\source.cpp 10
C2672 'pybind11::class_>::def': no matching overloaded function found ...\source.cpp 12

好像跟第二个template <class FuncType>有关我无法在任何地方定义,因为通用函数 func稍后会传入。有什么办法可以避免这个问题吗?

最佳答案

eval必须是接受 double 并返回 double(或可转换为 double 的类型)的函数,因此您可以使用 &DeclareClass::eval<double(*)(double)> 专门化模板;或更好地包括 <functional><pybind11/functional.h>你可以完全删除模板并制作eval拿个std::function<double(double)>作为它的第一个参数。

更具体地说,我会改写如下

/* TestClass.hpp */
#pragma once
#include <functional>

template <class Impl>
class CurRecTemplate {
protected:
    CurRecTemplate() {}
    ~CurRecTemplate() {}

    Impl& impl() { return static_cast<Impl&>(*this); }
    const Impl& impl() const { return static_cast<const Impl&>(*this); }
};

template <class Impl>
class BaseClass : public CurRecTemplate<Impl> {
public:
    BaseClass() { };

    double eval(std::function<double(double)> func, double x) const
    {
        return this->impl().evalImplementation(func, x);
    }
};

class DerivedClass : public BaseClass<DerivedClass> {
public:
    double evalImplementation(std::function<double(double)> f, double x) const
    {
        return f(x);
    };
}; 

/* Source.cpp */
#include <pybind11/pybind11.h>
#include "TestClass.hpp"
#include <pybind11/functional.h>

namespace py = pybind11;

template<typename Impl>
void declare(py::module &m, const std::string& className) {
    using DeclareClass = BaseClass<Impl>;

    py::class_<DeclareClass, std::shared_ptr<DeclareClass>>(m, className.c_str())
        .def(py::init<>())
        .def("eval", &DeclareClass::eval);
}

PYBIND11_MODULE(Project1, m) {
    declare<DerivedClass>(m, "DerivedClass");
}

关于c++ - Pybind - 奇怪的重复模板,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51058336/

相关文章:

c++ - QTimeEdit 设置的最大值大于 23 :59:59

c++ - 在 C++ 中实现类型列表

templates - 如何使用coldfusion构建母版页?

c++11 - PyBind11 全局级枚举

python - Eigen和Numpy->将矩阵从Python传递到C++

c++ - 圈圈碰撞低资源

c++ - 使用可变函数作为模板参数

c++ - 模板默认为具有更多模板的模板

c++ - 通过 pybind11 从 C++ 使用 scipy

c++ - 为什么不调用复制构造函数?