我是靠谱客的博主 忧伤飞机,最近开发中收集的这篇文章主要介绍python bind_pybind如何对py::list对象进行操作,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

您要查找的代码是here:class list : public object {

public:

PYBIND11_OBJECT_CVT(list, object, PyList_Check, PySequence_List)

explicit list(size_t size = 0) : object(PyList_New((ssize_t) size), stolen_t{}) {

if (!m_ptr) pybind11_fail("Could not allocate list object!");

}

size_t size() const { return (size_t) PyList_Size(m_ptr); }

detail::list_accessor operator[](size_t index) const { return {*this, index}; }

detail::list_iterator begin() const { return {*this, 0}; }

detail::list_iterator end() const { return {*this, PyList_GET_SIZE(m_ptr)}; }

template void append(T &&val) const {

PyList_Append(m_ptr, detail::object_or_cast(std::forward(val)).ptr());

}

};

还要记住,py::list继承自py::object,后者又从{}继承(这也意味着您是通过引用传递的)。根据我的经验,这种用法的文档很少,阅读代码是最好的选择。在

我们可以从类定义中看到࿰

最后

以上就是忧伤飞机为你收集整理的python bind_pybind如何对py::list对象进行操作的全部内容,希望文章能够帮你解决python bind_pybind如何对py::list对象进行操作所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(53)

评论列表共有 0 条评论

立即
投稿
返回
顶部