将Python / C ++模板与SWIG绑定

时间:2018-06-05 08:37:49

标签: python c++ binding swig

我尝试用Python绑定Python中的C ++模板。 我希望我的typename T可以是float或double。 我使用SWIG 3.0.8

这是我的C ++模板:Personnage.hpp(不要读所有这些,只有1个函数对我们感兴趣)

#ifndef PERSONNAGE_H_INCLUDED
#define PERSONNAGE_H_INCLUDED

#include <string>
#include <iostream>
#include <sstream>

template <typename T> 
class Personnage
{
    public:

        Personnage();

        ~Personnage();

        void setAge(const int &age);

        void setTaille(const T &taille);

        int getAge() const;

        T getTaille() const;


    protected:
        std::string P_nom;

        int P_age;

        T P_taille;
};

template<typename T>
Personnage<T>::Personnage()
: P_nom("Rigoberto"), P_age(42), P_taille(T(1.10))
{
}

template<typename T>
Personnage<T>::~Personnage(){}

template<typename T>
void Personnage<T>::setAge(const int &age)
{
    P_age = age;
}

template<typename T>
void Personnage<T>::setTaille(const T &taille)
{
    P_taille = taille;
}

template<typename T>
int Personnage<T>::getAge() const
{
    return P_age;
}

template<typename T>
T Personnage<T>::getTaille() const
{
    return P_taille;
}



#endif // PERSONNAGE_H_INCLUDED

我的Personnage.cpp只包含:     #include&#34; Personnage.hpp&#34;

这是我的界面文件:Personnage.i

%module Personnage

%{
#include "Personnage.hpp"
%}




%include "Personnage.hpp"

%module Personnage

%{
#include "Personnage.hpp"
%}

%rename (PersonnageD) Personnage::Personnage();
%rename (PersonnageC) Personnage::Personnage(const Personnage<T> &personnage);


%include "Personnage.hpp"
%include "std_string.i"

//constructeurs simples

%template(PFloat) Personnage<float>;
%template(PDouble) Personnage<double>;

%template(estGrand) estGrand<float, float>;
%template(estGrand) estGrand<float, double>;
%template(estGrand) estGrand<double, float>;
%template(estGrand) estGrand<double, double>;

我使用这些行来使用SWIG并编译:

swig -c++ -python Personnage.i
g++ -fPIC -c Personnage.cpp
g++ -fPIC -c Personnage_wrap.cxx $(python-config --cflags)
g++ -shared Personnage.o Personnage_wrap.o $(python-config --ldflags) -o _Personnage.so

这是我用来测试它的python文件:

import Personnage
persSimple = Personnage.PDouble("didier",45,1.59) #Player with a "Taille" in Double
print(persSimple.getTaille())
FpersSimple = Personnage.PFloat("didier",45,1.59) #Player with a "Taille" in Float
print(FpersSimple.getTaille())

第一次印刷展示&#34; 1.59&#34;,这是正确的。 第二个印刷节目&#34; 1.5900000(随机数字)&#34;,这正是我在这里寻求帮助的原因:它应该只显示&#34; 1.59&#34;。

当我输入&#34; FpersSimple&#34;在Python上,我得到:

<Personnage.PFloat; proxy of <Swig Object of type 'Personnage< float > *' at 0x7fd2742b3480> >

所以我的FpersSimple最终包含一个浮点数。

我不明白我哪里搞砸了。

感谢您的时间!

感谢您的时间和答案!

1 个答案:

答案 0 :(得分:1)

Python只知道double,因此您返回的浮点数将转换为double,而附加数字将只是未初始化的内存,但是当您打印该值时,这些数字也会被考虑在内。

您甚至不需要SWIG和Python的复杂示例即可重现此内容。只需初始化一个双精度浮点数(字面量1.59是一个双精度数)并以双精度打印即可。

#include <iomanip>
#include <iostream>
#include <limits>

int main() {
    double d = 1.59;
    float f = 1.59;
    std::cout << std::setprecision(std::numeric_limits<double>::digits10)
              << std::fixed
              << d << '\n'
              << f << '\n';
}
1.590000000000000
1.590000033378601