痛饮+ tcl + c++ (内存管理)

发布于 2024-11-14 13:01:38 字数 163 浏览 4 评论 0原文

我在 tcl 中有一个过程,它再次使用 swig 创建的接口调用 C++ 方法。该过程返回一个指针列表。我使用 tcl 检查列表中单个元素的所有权,

[lindex $listname 0] cget -thisown

它返回 0 而不是 1。

I have a procedure in tcl that again call a c++ method using interface created by swig. The procedure returns a list of pointers. I checked ownership for a single element in the List in tcl using

[lindex $listname 0] cget -thisown

it returns 0 instead of 1.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

昔梦 2024-11-21 13:01:38

根据 有关内存管理的 SWIG 文档,指针不属于(SWIG 默认绑定到)Tcl。如果 SWIG 出错,请使用 -acquire/-disown 操作来纠正它。例如:

[lindex $listname 0] -acquire

小心点!内存管理错误会导致混乱的崩溃或内存泄漏。

According to the SWIG documentation on memory management, pointers aren't owned by (the SWIG binding to) Tcl by default. If SWIG has got it wrong, use the -acquire/-disown operations to correct it. For example:

[lindex $listname 0] -acquire

Be careful! Getting memory management wrong will lead to confusing crashes or memory leaks.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文