boostorg / boostorg/python

Base class of non exposed derived class in Python side?

未關閉
#415 0 則留言 0 個 reaction 已指派 0 人 在 GitHub 檢視
主要語言
C++
星號
537
分支
223
平均合併
11 小時 22 分鐘
30 天內合併 PR
2

描述

Hello, I have a use case where a polymorphism factory can instantiate object of a non exposed class. I have a multi-level inheritance scheme and the last level is not exposed to Python. What I try to understand is why the Python object of the last level takes the type of the top-most class in the inheritance hierarchy and not the one just above?

Here is a minimal example to reproduce the behavior:

C++ side
```
class Base
{
public:
Base() {}
virtual ~Base() = default;
};

class Derived: public Base
{
public:
Derived(int value) { m_value = value; }
~Derived() = default;

int getValue() { return m_value; }

private:
int m_value;
};

class DerivedTwo: public Derived
{
public:
DerivedTwo(int value): Derived(value) {}
~DerivedTwo() = default;
};

std::shared_ptr factory()
{
return std::make_shared(9);
}

std::shared_ptr factoryTwo()
{
return std::make_shared(99);
}

BOOST_PYTHON_MODULE(mymodule)
{
using namespace boost::python;

class_, boost::noncopyable>("Base", init<>());

class_, std::shared_ptr, boost::noncopyable>("Derived", init())
.def("get_value", &Derived::getValue)
;

def("factory", &factory);
def("factory_two", &factoryTwo);
}
```
Python side
```
import mymodule

obj = mymodule.factory()
print(type(obj))

obj2 = mymodule.factory_two()
print(type(obj2))
```
Output

```

<-- WHY?
```
Obviously, if I expose DerivedTwo class, all is OK.
Thanks for your help.

貢獻指南

這個儲存庫沒有索引到貢獻指南

評估

這個 Issue 還沒有評估資料。

把新 issue 寄到你的電子郵件信箱

精選適合新手參與的 GitHub issue 摘要。