- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
这个问题在某些方面是这里发布的问题的扩展: SWIG_SHARED_PTR macro with templated class尽管这个问题可能完全不相关。
基本设置是这样的:我试图让 SWIG 将模板化类包装为 shared_ptr。所以接口(interface)文件应该是这样的
%shared_ptr(template_instance)
%include template_class.cpp
%template(vector_instance) template_class<int>;
现在的问题是 template_class
有很多派生类,这会导致 swig 中出现很多警告,然后构建错误。这些类不需要作为 shared_ptr
处理,所以我宁愿忽略上面代码生成的警告。错误的解决方案似乎是:
%shared_ptr(template_derived1)
%shared_ptr(template_derived2)
.
.
.
%shared_ptr(template_derivedn)
%shared_ptr(template_instance)
%include template_class.cpp
%template(vector_instance) template_class<int>;
这行得通,但是一团糟,我认为将所有内容都表示为 shared_ptr 肯定有一些缺点(它是什么?)。周围有人吗?
编辑:更新具体示例
测试.h
class Base
{
int base_member;
};
class Derived : public Base
{
int derived_member;
};
测试.i
%module test
%{
#include "test.h"
#include <boost/shared_ptr.hpp>
%}
%include <boost_shared_ptr.i>
%shared_ptr(Base)
%include test.h
命令:
swig -python -c++ test.i
g++ -fPIC -I /usr/include/python2.7 -c test_wrap.cxx
在这个精简的示例中,swig 调用给出了警告,而 g++ 调用给出了错误。请注意,我已经删除了模板,因为它似乎不是问题的组成部分。
错误通过注释掉解决
%shared_ptr(Base)
swig产生的警告是:
test.h:10: Warning 520: Derived class 'Derived' of 'Base' is not similarly marked as a smart pointer
g++ 的错误是:
test_wrap.cxx: In function ‘PyObject* _wrap_delete_Derived(PyObject*, PyObject*)’:
test_wrap.cxx:3155:22: error: ‘smartarg1’ was not declared in this scope
最佳答案
这里的警告是因为您需要告诉 SWIG 整个类层次结构,而不仅仅是基类,以便能够有效地使用智能指针。它需要能够在智能指针之间进行转换,以便任何采用指向 Base
的智能指针的东西也可以接受指向 Derived
的智能指针。所以你的接口(interface)文件需要是:
%module test
%{
#include "test.h"
#include <boost/shared_ptr.hpp>
%}
%include <boost_shared_ptr.i>
%shared_ptr(Base)
%shared_ptr(Derived)
%include "test.h"
它解决了被警告的问题并生成了在我的机器上编译良好的代码。
如果您不想告诉 SWIG 所有派生类型,最简单的方法是从 SWIG 中完全隐藏类型 - 只从要包装的内容中公开 Base
类型。您可以通过几种方式做到这一点,侵入性最小的是将接口(interface)文件更改为:
%module test
%{
#include "test.h"
#include <boost/shared_ptr.hpp>
%}
%include <boost_shared_ptr.i>
%ignore Derived;
%shared_ptr(Base)
%include "test.h"
这只会导致 Base
被包装,因此编译失败的代码不会再生成。
或者,由于这仍然需要每个类型的 %ignore
,您可以修改头文件以完全隐藏来自 SWIG 的 Derived
的声明/定义:
class Base
{
int base_member;
};
#ifndef SWIG
class Derived : public Base
{
int derived_member;
};
#endif
如果你的项目被组织成每种类型有一个头文件(大致),你可以通过简单得多的方式来做到这一点,只需不使用 %include
与文件以外的文件基础一。
如果你仍然想包装它们,但不是作为 smart_ptr 我认为你将不得不接受会有很多 %smart_ptr
- 你可以自动生成它们虽然也许?你可以用modules玩游戏,但我认为这并不容易,也不值得付出努力。
关于c++ - 带有模板化类和派生类的 Swig shared_ptr 宏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11380483/
使用 shared_ptr 时,我应该只使用 shared_ptr 吗?申报一次或申报shared_ptr无论我经过哪里? 所以在我新建实例的函数中,我将它包装在 shared_ptr 中但是当我从函
#include #include #include using namespace std; struct Node { Node(int data, boost::shared_pt
对于我目前正在处理的代码,我们有时需要使用较旧的编译器在一些较旧的系统上进行编译(例如,我们在较旧的 IBM BlueGene/L 上运行 sims,其支持契约(Contract)规定了一些非常旧的
我正在阅读 this answer作者指的是boost best practices其中说: Avoid using unnamed shared_ptr temporaries to save ty
我正在处理几个类,我想知道如何在我的应用程序类中使用普通成员,而该成员需要使用 shared_from_this()? 这里有一些代码来阐明我的意思(见评论) class Observable { p
我有一个 Foo 类,其中包含一个 Hotel 类 的 shared_ptr,以及一个 Rules 类(位于 namespace Rules 内): class Foo { public: //
我想不通。看起来我遗漏了一些简单的东西?我要在 MakePointToSameValue 中输入什么,以便在点 (1) b.ptr 和c.ptr 与a.ptr 指向同一个 换句话说,a.ptr.get
我已尽我所能制作了 SSCE。我怀疑共享指针在我在 main 中请求它们之前解构(释放)了我的对象。如何在不完全绕过共享指针的情况下防止这种情况发生?这是一个程序中的孤立问题,否则可以通过使用 sha
这个问题在这里已经有了答案: Set shared_ptr with new_pointer that is old_pointer + offset (1 个回答) 关闭 4 年前。 我目前正在学
假设我们有一个类,成员如下 std::map> member_我们无法替换 member通过具有 std::shared_ptr 的 map ,因为该类必须对 ObscureType 的非常量函数进行
我正在用 C++ 做学校作业(我还在学习)。我正在尝试实现随机生成的二叉树结构,使用 shared_ptr 在多个地方存储节点的信息(我需要它作为作业)。考虑以下示例代码(这是我的小测试程序): #i
我有以下类(class) struct Images { std::vector > ptr_vector; } 将 ptr_vector 放入 std::shared_ptr 中不会在复制
我刚刚对一个项目进行了大规模重构,添加了一个基类来代替现在所说基类的派生类(因为我想要这个类的更多“类型”)。 我的问题是,一些实用函数将原始类 A 的引用作为 shared_ptr,因此函数声明如下
我记得 Scott Meyers 教我的 func(shared_ptr(new P), shared_ptr(new Q)); 是危险的,因为(如果我没记错的话)内存分配、引用计数(构造)和分配给
给定 struct X { void f(std::shared_ptr); }; auto x(std::make_shared()); 我大概可以安全地做 x->f(std::move(x
我试着介绍了一些const一些新代码的正确性(实际上是功能范例),发现我无法传递 std::shared_ptr到一个需要 std::shared_ptr 的函数.请注意,我不想放弃 constnes
我需要将原始指针包装到 shared_ptr 中,以便将其传递给函数。该函数在返回后不保留对输入对象的任何引用。 { MyClass i; shared_ptr p(&i); f(p);
我在继承链中有4个类:A-> B-> C,A-> B-> D,其中B是唯一的类模板。 我想拥有一个在id和对象指针(C或D)之间映射的std::map,但是我在将make_shared输出分配给std
boost::shared_ptr 是否解决原始指针问题? Base* p = new Base(); shared_ptr sp(p); shared_ptr sq(p); 两个 shared_
How can shared_ptr be a subclass of shared_ptr? 我想知道如何实现模板类 C这样 C是 C 的子类? 我已经观察到上述情况,例如 shared_ptr和
我是一名优秀的程序员,十分优秀!