- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我有 C++ 类,需要在 python 代码中使用它。为此,使用 swig 生成包装类。根据文档配置了 example.i
/* File: example.i */
%module example
%{
#define SWIG_FILE_WITH_INIT
#include "item.h"
#include "GradedComplex.h"
#include "GradedDouble.h"
%}
%include "item.h"
%include "GradedComplex.h"
%include "GradedDouble.h"
我正在尝试在 Windows 中使用 swig 构建一个包装类
c:>swig -c++ -python example.i
c:>python setup.py build_ext --inplace
执行第二个命令后,我收到以下错误。
example_wrap.cxx
C:\Program Files\Microsoft Visual Studio 9.0\VC\INCLUDE\xlocale(342) : warning C
4530: C++ exception handler used, but unwind semantics are not enabled. Specify
/EHsc
c:\documents and settings\swig\item.h(73) : warning C45
21: 'Item<std::complex<double>>' : multiple copy constructors specified
c:\documents and settings\swig\item.h(57) : error C2106
: '+=' : left operand must be l-value
c:\documents and settings\swig\item.h(58) : error C2106
: '+=' : left operand must be l-value
c:\documents and settings\swig\item.h(63) : error C2106
: '-=' : left operand must be l-value
c:\documents and settings\swig\item.h(64) : error C2106
: '-=' : left operand must be l-value
c:\documents and settings\swig\item.h(69) : error C2106
: '=' : left operand must be l-value
c:\documents and settings\swig\item.h(70) : error C2106
: '=' : left operand must be l-value
example_wrap.cxx(3275) : error C2512: 'Item<std::complex<double>>' : no appropriate default constructor available
c:\documents and settings\swig\Item.h(38) : warning C45
21: 'Item<T>' : multiple copy constructors specified
with
[
T=double
]
example_wrap.cxx(3425) : see reference to class template instantiation '
Item<T>' being compiled
with
[
T=double
]
error: command '"C:\Program Files\Microsoft Visual Studio 9.0\VC\BIN\cl.exe"' fa
iled with exit status 2
item.h如下
#ifndef __ITEM_H__
#define __ITEM_H__
#include <complex>
#include <functional>
#include <string>
template<typename T>
class Item
{
std::string name_;
T val_;
public:
Item(std::string name, T val) : name_(name), val_(val) {}
Item(Item<T> &rhs) : name_(rhs.name_), val_(rhs.val_) {}
Item(const Item<T> &rhs) : name_(rhs.name_), val_(rhs.val_) {}
~Item() {}
std::string name() const { return name_; }
T operator()() const { return val_; }
double norm() const { return sqrt(val_ * val_); }
Item<T> &operator+=(Item<T> &rhs)
{
val_ += rhs();
return *this;
}
Item<T> &operator-=(Item<T> &rhs)
{
val_ -= rhs();
return *this;
}
Item<T> &operator*=(Item<T> &rhs)
{
val_ *= rhs();
return *this;
}
};
template<>
class Item<std::complex<double> >
{
std::string name_;
std::complex<double> val_;
public:
Item(std::string name, std::complex<double> val) : name_(name), val_(val) {}
Item(Item<std::complex<double> > &rhs) : name_(rhs.name_), val_(rhs.val_) {}
Item(const Item<std::complex<double> > &rhs) : name_(rhs.name_), val_(rhs.val_) {}
~Item() {}
std::string name() const { return name_; }
std::complex<double> operator()() const { return val_; }
double norm() const { return sqrt(val_.real() * val_.real() + val_.imag() * val_.imag()); }
Item<std::complex<double> > &operator+=(Item<std::complex<double> > &rhs)
{
val_.real() += rhs().real();
val_.imag() += rhs().imag();
return *this;
}
Item<std::complex<double> > &operator-=(Item<std::complex<double> > &rhs)
{
val_.real() -= rhs().real();
val_.imag() -= rhs().imag();
return *this;
}
Item<std::complex<double> > &operator*=(Item<std::complex<double> > &rhs)
{
val_.real() = val_.real() * rhs().real() - val_.imag() * rhs().imag();
val_.imag() = val_.real() * rhs().imag() + val_.imag() * rhs().real();
return *this;
}
};
template<typename T>
struct ItemComparator : public std::binary_function<Item<T>, Item<T>, bool>
{
inline bool operator()(Item<T> lhs, Item<T> rhs)
{
return lhs.norm() < rhs.norm();
}
};
#endif
最佳答案
您的 C++ 代码中有错误。 std::complex::real()
不返回左值,因此无法编译:
Item<std::complex<double> > &operator+=(Item<std::complex<double> > &rhs)
{
val_.real() += rhs().real();
val_.imag() += rhs().imag();
return *this;
}
你可以使用这个:
val_ += rhs();
关于python - swig 构建问题 - python,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13305101/
我正在制作一个 C++ 库的包装器,以便它可以从 Java 中使用,我正在用 Swig 做这个。 我面临的是我有一个类(class) SomeClass ,它有一些重载的方法( someMethod
我有许多要在 SWIG 中重命名的类。我的大部分类(class)看起来像这样some_class ,我想将其重命名为 SomeClass .这很简单: %replace("%(camelcase)s"
PyPy 有一些 compatibility limitations ,尤其是关于 CPython C API。 我用 QuickFix预编译的 SWIG 绑定(bind)附带的包,我正在考虑将它与
关闭。这个问题是off-topic .它目前不接受答案。 想改善这个问题吗? Update the question所以它是 on-topic对于堆栈溢出。 9年前关闭。 Improve this q
使用 SWIG 生成接口(interface)模块时,生成的 C/C++ 文件包含大量静态样板函数。因此,如果想通过在同一个应用程序中使用许多单独编译的小接口(interface)来模块化 SWIG
我正在应用 SWIG 手册中有关嵌套类的解决方法,该部分使用全局内部类。在这里,我将向您展示一个类似于手册中的版本,但为您尽可能地简化了。我还必须将内联定义 {} 添加到 method(),因为没有它
我有一个现有的库 (JPhysX),它是原生 C++ 库 (PhysX) 的 Java 包装器。 Java 库使用 SWIG 生成的类型,例如 com.jphysx.SWIGTYPE_p_NxStre
有没有办法动态向下转换 swig 对象的 swig 代理? 这样做的原因是为了模拟 C++ 向下转换,但纯粹来自 python。例如,典型的 C++ 用法是 MyBase* obj = new MyB
我在远程服务器上工作,所以我在本地安装了 swig,使用 -prefix=/home/user/directory。 我有一个来自同事的 makefile,其中包含以下命令: swig $(SWIG_
据我所知,在用于将 c++ 文件编译为 python 扩展模块的 .i 文件中,我们可以添加一些 python 代码,如下所示(来自 example for adding additional pyt
我的 Swig 文件 (.i) 中有以下代码: %extend vgSofa::handler::VertexShape { vgd::Shp createVSWithNode( so
我有一个用 swig 包装的类的 C++ 代码。我无法修改代码或包装。在 python 中,我使用 ctypes 拥有一个指向所述 C++ 类的实例的指针。如何围绕该指针创建一个 swig 包装器?
我开始掌握 SWIG 的窍门,SWIG 的最新版本 (v3.0) 似乎可以处理我开箱即用所需的一切,包括 C++11 功能,但我遇到了麻烦开始在我的导演类(class)中使用 shared_ptr。
我正在使用 javacode 类型映射来添加一些附加函数来代替 SWIG 生成的函数。我想删除 SWIG 为 unsigned char mac[6]; 生成的默认 getter 和 setter(p
我正在使用 SWIG 为我的 C 库生成 Python 语言绑定(bind)。我已经设法构建了绑定(bind)和导出的数据结构,但在使用该库时我不得不跳过一些障碍。 例如,C 头文件的数据类型和函数原
我最近在node-js应用程序中从jade模板引擎切换到了swig。在使用jade时我使用了命令 jade.render('/sample.jade',{obj:object});渲染模板并传递对象。
我在我的 python 代码中发现了瓶颈,尝试了 Psycho 等。然后决定编写一个 c/c++ 扩展来提高性能。 在 swig 的帮助下,您几乎不需要关心参数等。一切正常。 现在我的问题是:swig
由于 SWIG 无法解析 __attribute__((packed))在我想包装的一些 C 结构上,我通过放置一个 #define __attribute__(x) 在我的.i文件。 这什么时候会来
我有一个包含 C++ header 的 SWIG 文件。 痛饮文件: %module my_module %{ #include "my_c_file.h" %} %include "my_c_fil
我正在尝试学习如何使用 SWIG,并且想知道我是否正在执行一些不需要执行的额外步骤。我目前有文件 Dog.cpp、Dog.h 和 Dog.i。我正在尝试使用 SWIG 包装 Dog.cpp 以便在 P
我是一名优秀的程序员,十分优秀!