gpt4 book ai didi

python - PyO3 中对象向量的垃圾收集

转载 作者:行者123 更新时间:2023-11-29 08:20:17 25 4
gpt4 key购买 nike

我有 2 个 pyclasses BlockBlockGroup

#[pyclass]
struct Block {
start: i32,
stop: i32,
}

#[pyclass]
struct BlockGroup {
blocks: Vec<Block>
}

我是 PyO3 的新手,我已经阅读了 documentation关于垃圾收集,但我并不完全理解它。

If your type owns references to other python objects, you will need to integrate with Python's garbage collector so that the GC is aware of those references.

鉴于 BlockGroup 拥有具体的 Block 对象,我是否需要实现自定义垃圾收集?

最佳答案

在这种情况下,BlockVec<Block>分别是 rust 内存的一部分而不是 python 内存的一部分,所以你不需要担心垃圾收集。 python 内存中的对象例如是Py<Block> .

关于python - PyO3 中对象向量的垃圾收集,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54773323/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com