Boost.Python 对象的 id
如何在 boost python 中获取 python 对象的 id?我希望有类似的东西
boost::python::obj = ...;
int id = boost::python::id(obj);
How do I get the id of a python object in boost python. I was hoping for something like
boost::python::obj = ...;
int id = boost::python::id(obj);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从Python文档来看,在CPython中,返回的值是对象的地址。因此,如果您正在 Boost Python 中寻找类似的东西:
粗略浏览一下源代码;内置 id 函数的实现(我正在查看 2.6.4)仅仅是:
From the Python documentation, in CPython, the value returned is the address of the object. So, if you're looking for something similar in Boost Python:
A cursory glance in the source; the built-in
id
function's implementation (I'm looking at 2.6.4) is merely: