2015-10-13 00:57:16 +00:00
|
|
|
.. _classes:
|
|
|
|
|
|
|
|
Object-oriented code
|
|
|
|
####################
|
|
|
|
|
|
|
|
Creating bindings for a custom type
|
|
|
|
===================================
|
|
|
|
|
|
|
|
Let's now look at a more complex example where we'll create bindings for a
|
|
|
|
custom C++ data structure named ``Pet``. Its definition is given below:
|
|
|
|
|
|
|
|
.. code-block:: cpp
|
|
|
|
|
|
|
|
struct Pet {
|
|
|
|
Pet(const std::string &name) : name(name) { }
|
|
|
|
void setName(const std::string &name_) { name = name_; }
|
|
|
|
const std::string &getName() const { return name; }
|
|
|
|
|
|
|
|
std::string name;
|
|
|
|
};
|
|
|
|
|
|
|
|
The binding code for ``Pet`` looks as follows:
|
|
|
|
|
|
|
|
.. code-block:: cpp
|
|
|
|
|
2015-10-15 16:13:33 +00:00
|
|
|
#include <pybind11/pybind11.h>
|
2015-10-13 21:21:54 +00:00
|
|
|
|
2015-10-15 20:46:07 +00:00
|
|
|
namespace py = pybind11;
|
2015-10-13 00:57:16 +00:00
|
|
|
|
2017-04-23 23:51:44 +00:00
|
|
|
PYBIND11_MODULE(example, m) {
|
2015-10-13 00:57:16 +00:00
|
|
|
py::class_<Pet>(m, "Pet")
|
|
|
|
.def(py::init<const std::string &>())
|
|
|
|
.def("setName", &Pet::setName)
|
|
|
|
.def("getName", &Pet::getName);
|
|
|
|
}
|
|
|
|
|
2017-01-31 15:54:08 +00:00
|
|
|
:class:`class_` creates bindings for a C++ *class* or *struct*-style data
|
2015-10-13 00:57:16 +00:00
|
|
|
structure. :func:`init` is a convenience function that takes the types of a
|
|
|
|
constructor's parameters as template arguments and wraps the corresponding
|
|
|
|
constructor (see the :ref:`custom_constructors` section for details). An
|
|
|
|
interactive Python session demonstrating this example is shown below:
|
|
|
|
|
2016-06-03 09:19:29 +00:00
|
|
|
.. code-block:: pycon
|
2015-10-13 00:57:16 +00:00
|
|
|
|
|
|
|
% python
|
|
|
|
>>> import example
|
2021-09-22 19:38:50 +00:00
|
|
|
>>> p = example.Pet("Molly")
|
2015-10-13 00:57:16 +00:00
|
|
|
>>> print(p)
|
|
|
|
<example.Pet object at 0x10cd98060>
|
|
|
|
>>> p.getName()
|
2022-02-11 02:28:08 +00:00
|
|
|
'Molly'
|
2021-09-22 19:38:50 +00:00
|
|
|
>>> p.setName("Charly")
|
2015-10-13 00:57:16 +00:00
|
|
|
>>> p.getName()
|
2022-02-11 02:28:08 +00:00
|
|
|
'Charly'
|
2015-10-13 00:57:16 +00:00
|
|
|
|
2016-02-07 16:24:41 +00:00
|
|
|
.. seealso::
|
|
|
|
|
|
|
|
Static member functions can be bound in the same way using
|
|
|
|
:func:`class_::def_static`.
|
|
|
|
|
2015-10-13 00:57:16 +00:00
|
|
|
Keyword and default arguments
|
|
|
|
=============================
|
|
|
|
It is possible to specify keyword and default arguments using the syntax
|
|
|
|
discussed in the previous chapter. Refer to the sections :ref:`keyword_args`
|
|
|
|
and :ref:`default_args` for details.
|
|
|
|
|
|
|
|
Binding lambda functions
|
|
|
|
========================
|
|
|
|
|
|
|
|
Note how ``print(p)`` produced a rather useless summary of our data structure in the example above:
|
|
|
|
|
2016-06-03 09:19:29 +00:00
|
|
|
.. code-block:: pycon
|
2015-10-13 00:57:16 +00:00
|
|
|
|
|
|
|
>>> print(p)
|
|
|
|
<example.Pet object at 0x10cd98060>
|
|
|
|
|
2020-08-18 10:46:23 +00:00
|
|
|
To address this, we could bind a utility function that returns a human-readable
|
2015-10-13 00:57:16 +00:00
|
|
|
summary to the special method slot named ``__repr__``. Unfortunately, there is no
|
|
|
|
suitable functionality in the ``Pet`` data structure, and it would be nice if
|
|
|
|
we did not have to change it. This can easily be accomplished by binding a
|
|
|
|
Lambda function instead:
|
|
|
|
|
|
|
|
.. code-block:: cpp
|
|
|
|
|
|
|
|
py::class_<Pet>(m, "Pet")
|
|
|
|
.def(py::init<const std::string &>())
|
|
|
|
.def("setName", &Pet::setName)
|
|
|
|
.def("getName", &Pet::getName)
|
|
|
|
.def("__repr__",
|
|
|
|
[](const Pet &a) {
|
|
|
|
return "<example.Pet named '" + a.name + "'>";
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
Both stateless [#f1]_ and stateful lambda closures are supported by pybind11.
|
|
|
|
With the above change, the same Python code now produces the following output:
|
|
|
|
|
2016-06-03 09:19:29 +00:00
|
|
|
.. code-block:: pycon
|
2015-10-13 00:57:16 +00:00
|
|
|
|
|
|
|
>>> print(p)
|
|
|
|
<example.Pet named 'Molly'>
|
|
|
|
|
2016-12-08 10:07:52 +00:00
|
|
|
.. [#f1] Stateless closures are those with an empty pair of brackets ``[]`` as the capture object.
|
|
|
|
|
2016-06-22 11:52:31 +00:00
|
|
|
.. _properties:
|
|
|
|
|
2015-10-13 00:57:16 +00:00
|
|
|
Instance and static fields
|
|
|
|
==========================
|
|
|
|
|
|
|
|
We can also directly expose the ``name`` field using the
|
|
|
|
:func:`class_::def_readwrite` method. A similar :func:`class_::def_readonly`
|
|
|
|
method also exists for ``const`` fields.
|
|
|
|
|
|
|
|
.. code-block:: cpp
|
|
|
|
|
|
|
|
py::class_<Pet>(m, "Pet")
|
|
|
|
.def(py::init<const std::string &>())
|
|
|
|
.def_readwrite("name", &Pet::name)
|
|
|
|
// ... remainder ...
|
|
|
|
|
|
|
|
This makes it possible to write
|
|
|
|
|
2016-06-03 09:19:29 +00:00
|
|
|
.. code-block:: pycon
|
2015-10-13 00:57:16 +00:00
|
|
|
|
2021-09-22 19:38:50 +00:00
|
|
|
>>> p = example.Pet("Molly")
|
2015-10-13 00:57:16 +00:00
|
|
|
>>> p.name
|
2022-02-11 02:28:08 +00:00
|
|
|
'Molly'
|
2021-09-22 19:38:50 +00:00
|
|
|
>>> p.name = "Charly"
|
2015-10-13 00:57:16 +00:00
|
|
|
>>> p.name
|
2022-02-11 02:28:08 +00:00
|
|
|
'Charly'
|
2015-10-13 00:57:16 +00:00
|
|
|
|
|
|
|
Now suppose that ``Pet::name`` was a private internal variable
|
|
|
|
that can only be accessed via setters and getters.
|
|
|
|
|
|
|
|
.. code-block:: cpp
|
|
|
|
|
|
|
|
class Pet {
|
|
|
|
public:
|
|
|
|
Pet(const std::string &name) : name(name) { }
|
|
|
|
void setName(const std::string &name_) { name = name_; }
|
|
|
|
const std::string &getName() const { return name; }
|
|
|
|
private:
|
|
|
|
std::string name;
|
|
|
|
};
|
|
|
|
|
|
|
|
In this case, the method :func:`class_::def_property`
|
|
|
|
(:func:`class_::def_property_readonly` for read-only data) can be used to
|
2015-10-13 21:21:54 +00:00
|
|
|
provide a field-like interface within Python that will transparently call
|
|
|
|
the setter and getter functions:
|
2015-10-13 00:57:16 +00:00
|
|
|
|
|
|
|
.. code-block:: cpp
|
|
|
|
|
|
|
|
py::class_<Pet>(m, "Pet")
|
|
|
|
.def(py::init<const std::string &>())
|
|
|
|
.def_property("name", &Pet::getName, &Pet::setName)
|
|
|
|
// ... remainder ...
|
|
|
|
|
2017-11-07 16:35:27 +00:00
|
|
|
Write only properties can be defined by passing ``nullptr`` as the
|
|
|
|
input for the read function.
|
|
|
|
|
2015-10-13 00:57:16 +00:00
|
|
|
.. seealso::
|
|
|
|
|
|
|
|
Similar functions :func:`class_::def_readwrite_static`,
|
|
|
|
:func:`class_::def_readonly_static` :func:`class_::def_property_static`,
|
|
|
|
and :func:`class_::def_property_readonly_static` are provided for binding
|
2016-06-22 11:52:31 +00:00
|
|
|
static variables and properties. Please also see the section on
|
|
|
|
:ref:`static_properties` in the advanced part of the documentation.
|
2015-10-13 00:57:16 +00:00
|
|
|
|
2016-10-13 21:53:16 +00:00
|
|
|
Dynamic attributes
|
|
|
|
==================
|
|
|
|
|
|
|
|
Native Python classes can pick up new attributes dynamically:
|
|
|
|
|
|
|
|
.. code-block:: pycon
|
|
|
|
|
|
|
|
>>> class Pet:
|
2021-09-22 19:38:50 +00:00
|
|
|
... name = "Molly"
|
2016-10-13 21:53:16 +00:00
|
|
|
...
|
|
|
|
>>> p = Pet()
|
2021-09-22 19:38:50 +00:00
|
|
|
>>> p.name = "Charly" # overwrite existing
|
2016-10-13 21:53:16 +00:00
|
|
|
>>> p.age = 2 # dynamically add a new attribute
|
|
|
|
|
|
|
|
By default, classes exported from C++ do not support this and the only writable
|
|
|
|
attributes are the ones explicitly defined using :func:`class_::def_readwrite`
|
|
|
|
or :func:`class_::def_property`.
|
|
|
|
|
|
|
|
.. code-block:: cpp
|
|
|
|
|
|
|
|
py::class_<Pet>(m, "Pet")
|
|
|
|
.def(py::init<>())
|
|
|
|
.def_readwrite("name", &Pet::name);
|
|
|
|
|
|
|
|
Trying to set any other attribute results in an error:
|
|
|
|
|
|
|
|
.. code-block:: pycon
|
|
|
|
|
|
|
|
>>> p = example.Pet()
|
2021-09-22 19:38:50 +00:00
|
|
|
>>> p.name = "Charly" # OK, attribute defined in C++
|
2016-10-13 21:53:16 +00:00
|
|
|
>>> p.age = 2 # fail
|
|
|
|
AttributeError: 'Pet' object has no attribute 'age'
|
|
|
|
|
|
|
|
To enable dynamic attributes for C++ classes, the :class:`py::dynamic_attr` tag
|
|
|
|
must be added to the :class:`py::class_` constructor:
|
|
|
|
|
|
|
|
.. code-block:: cpp
|
|
|
|
|
|
|
|
py::class_<Pet>(m, "Pet", py::dynamic_attr())
|
|
|
|
.def(py::init<>())
|
|
|
|
.def_readwrite("name", &Pet::name);
|
|
|
|
|
|
|
|
Now everything works as expected:
|
|
|
|
|
|
|
|
.. code-block:: pycon
|
|
|
|
|
|
|
|
>>> p = example.Pet()
|
2021-09-22 19:38:50 +00:00
|
|
|
>>> p.name = "Charly" # OK, overwrite value in C++
|
2016-10-13 21:53:16 +00:00
|
|
|
>>> p.age = 2 # OK, dynamically add a new attribute
|
|
|
|
>>> p.__dict__ # just like a native Python class
|
|
|
|
{'age': 2}
|
|
|
|
|
|
|
|
Note that there is a small runtime cost for a class with dynamic attributes.
|
|
|
|
Not only because of the addition of a ``__dict__``, but also because of more
|
|
|
|
expensive garbage collection tracking which must be activated to resolve
|
|
|
|
possible circular references. Native Python classes incur this same cost by
|
|
|
|
default, so this is not anything to worry about. By default, pybind11 classes
|
|
|
|
are more efficient than native Python classes. Enabling dynamic attributes
|
|
|
|
just brings them on par.
|
|
|
|
|
2016-01-17 21:36:37 +00:00
|
|
|
.. _inheritance:
|
|
|
|
|
2018-04-14 00:13:10 +00:00
|
|
|
Inheritance and automatic downcasting
|
|
|
|
=====================================
|
2015-10-13 00:57:16 +00:00
|
|
|
|
|
|
|
Suppose now that the example consists of two data structures with an
|
|
|
|
inheritance relationship:
|
|
|
|
|
|
|
|
.. code-block:: cpp
|
|
|
|
|
|
|
|
struct Pet {
|
|
|
|
Pet(const std::string &name) : name(name) { }
|
|
|
|
std::string name;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Dog : Pet {
|
|
|
|
Dog(const std::string &name) : Pet(name) { }
|
|
|
|
std::string bark() const { return "woof!"; }
|
|
|
|
};
|
|
|
|
|
2016-09-12 03:03:20 +00:00
|
|
|
There are two different ways of indicating a hierarchical relationship to
|
2016-09-06 16:27:00 +00:00
|
|
|
pybind11: the first specifies the C++ base class as an extra template
|
2016-09-12 03:03:20 +00:00
|
|
|
parameter of the :class:`class_`:
|
2016-01-17 21:36:44 +00:00
|
|
|
|
|
|
|
.. code-block:: cpp
|
|
|
|
|
|
|
|
py::class_<Pet>(m, "Pet")
|
|
|
|
.def(py::init<const std::string &>())
|
|
|
|
.def_readwrite("name", &Pet::name);
|
|
|
|
|
2016-09-06 16:27:00 +00:00
|
|
|
// Method 1: template parameter:
|
|
|
|
py::class_<Dog, Pet /* <- specify C++ parent type */>(m, "Dog")
|
|
|
|
.def(py::init<const std::string &>())
|
|
|
|
.def("bark", &Dog::bark);
|
|
|
|
|
2016-01-17 21:36:44 +00:00
|
|
|
Alternatively, we can also assign a name to the previously bound ``Pet``
|
|
|
|
:class:`class_` object and reference it when binding the ``Dog`` class:
|
2015-10-13 00:57:16 +00:00
|
|
|
|
|
|
|
.. code-block:: cpp
|
|
|
|
|
|
|
|
py::class_<Pet> pet(m, "Pet");
|
|
|
|
pet.def(py::init<const std::string &>())
|
|
|
|
.def_readwrite("name", &Pet::name);
|
|
|
|
|
2016-09-12 03:03:20 +00:00
|
|
|
// Method 2: pass parent class_ object:
|
2016-01-17 21:36:44 +00:00
|
|
|
py::class_<Dog>(m, "Dog", pet /* <- specify Python parent type */)
|
2015-10-13 00:57:16 +00:00
|
|
|
.def(py::init<const std::string &>())
|
|
|
|
.def("bark", &Dog::bark);
|
|
|
|
|
2016-09-12 03:03:20 +00:00
|
|
|
Functionality-wise, both approaches are equivalent. Afterwards, instances will
|
|
|
|
expose fields and methods of both types:
|
2015-10-13 00:57:16 +00:00
|
|
|
|
2016-06-03 09:19:29 +00:00
|
|
|
.. code-block:: pycon
|
2015-10-13 00:57:16 +00:00
|
|
|
|
2021-09-22 19:38:50 +00:00
|
|
|
>>> p = example.Dog("Molly")
|
2015-10-13 00:57:16 +00:00
|
|
|
>>> p.name
|
2022-02-11 02:28:08 +00:00
|
|
|
'Molly'
|
2015-10-13 00:57:16 +00:00
|
|
|
>>> p.bark()
|
2022-02-11 02:28:08 +00:00
|
|
|
'woof!'
|
2015-10-13 00:57:16 +00:00
|
|
|
|
2017-07-23 01:36:08 +00:00
|
|
|
The C++ classes defined above are regular non-polymorphic types with an
|
|
|
|
inheritance relationship. This is reflected in Python:
|
|
|
|
|
|
|
|
.. code-block:: cpp
|
|
|
|
|
|
|
|
// Return a base pointer to a derived instance
|
|
|
|
m.def("pet_store", []() { return std::unique_ptr<Pet>(new Dog("Molly")); });
|
|
|
|
|
|
|
|
.. code-block:: pycon
|
|
|
|
|
|
|
|
>>> p = example.pet_store()
|
|
|
|
>>> type(p) # `Dog` instance behind `Pet` pointer
|
2018-04-14 00:13:10 +00:00
|
|
|
Pet # no pointer downcasting for regular non-polymorphic types
|
2017-07-23 01:36:08 +00:00
|
|
|
>>> p.bark()
|
|
|
|
AttributeError: 'Pet' object has no attribute 'bark'
|
|
|
|
|
|
|
|
The function returned a ``Dog`` instance, but because it's a non-polymorphic
|
|
|
|
type behind a base pointer, Python only sees a ``Pet``. In C++, a type is only
|
|
|
|
considered polymorphic if it has at least one virtual function and pybind11
|
|
|
|
will automatically recognize this:
|
|
|
|
|
|
|
|
.. code-block:: cpp
|
|
|
|
|
|
|
|
struct PolymorphicPet {
|
|
|
|
virtual ~PolymorphicPet() = default;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct PolymorphicDog : PolymorphicPet {
|
|
|
|
std::string bark() const { return "woof!"; }
|
|
|
|
};
|
|
|
|
|
|
|
|
// Same binding code
|
|
|
|
py::class_<PolymorphicPet>(m, "PolymorphicPet");
|
|
|
|
py::class_<PolymorphicDog, PolymorphicPet>(m, "PolymorphicDog")
|
|
|
|
.def(py::init<>())
|
|
|
|
.def("bark", &PolymorphicDog::bark);
|
|
|
|
|
|
|
|
// Again, return a base pointer to a derived instance
|
|
|
|
m.def("pet_store2", []() { return std::unique_ptr<PolymorphicPet>(new PolymorphicDog); });
|
|
|
|
|
|
|
|
.. code-block:: pycon
|
|
|
|
|
|
|
|
>>> p = example.pet_store2()
|
|
|
|
>>> type(p)
|
2018-04-14 00:13:10 +00:00
|
|
|
PolymorphicDog # automatically downcast
|
2017-07-23 01:36:08 +00:00
|
|
|
>>> p.bark()
|
2022-02-11 02:28:08 +00:00
|
|
|
'woof!'
|
2017-07-23 01:36:08 +00:00
|
|
|
|
2018-04-14 00:13:10 +00:00
|
|
|
Given a pointer to a polymorphic base, pybind11 performs automatic downcasting
|
2017-07-23 01:36:08 +00:00
|
|
|
to the actual derived type. Note that this goes beyond the usual situation in
|
|
|
|
C++: we don't just get access to the virtual functions of the base, we get the
|
|
|
|
concrete derived type including functions and attributes that the base type may
|
|
|
|
not even be aware of.
|
|
|
|
|
|
|
|
.. seealso::
|
|
|
|
|
|
|
|
For more information about polymorphic behavior see :ref:`overriding_virtuals`.
|
|
|
|
|
|
|
|
|
2015-10-13 00:57:16 +00:00
|
|
|
Overloaded methods
|
|
|
|
==================
|
|
|
|
|
|
|
|
Sometimes there are several overloaded C++ methods with the same name taking
|
|
|
|
different kinds of input arguments:
|
|
|
|
|
|
|
|
.. code-block:: cpp
|
|
|
|
|
|
|
|
struct Pet {
|
|
|
|
Pet(const std::string &name, int age) : name(name), age(age) { }
|
|
|
|
|
2017-01-13 10:15:52 +00:00
|
|
|
void set(int age_) { age = age_; }
|
|
|
|
void set(const std::string &name_) { name = name_; }
|
2015-10-13 00:57:16 +00:00
|
|
|
|
|
|
|
std::string name;
|
|
|
|
int age;
|
|
|
|
};
|
|
|
|
|
|
|
|
Attempting to bind ``Pet::set`` will cause an error since the compiler does not
|
|
|
|
know which method the user intended to select. We can disambiguate by casting
|
|
|
|
them to function pointers. Binding multiple functions to the same Python name
|
2015-10-19 21:50:51 +00:00
|
|
|
automatically creates a chain of function overloads that will be tried in
|
2015-10-13 00:57:16 +00:00
|
|
|
sequence.
|
|
|
|
|
|
|
|
.. code-block:: cpp
|
|
|
|
|
|
|
|
py::class_<Pet>(m, "Pet")
|
|
|
|
.def(py::init<const std::string &, int>())
|
2020-09-14 18:07:29 +00:00
|
|
|
.def("set", static_cast<void (Pet::*)(int)>(&Pet::set), "Set the pet's age")
|
|
|
|
.def("set", static_cast<void (Pet::*)(const std::string &)>(&Pet::set), "Set the pet's name");
|
2015-10-13 00:57:16 +00:00
|
|
|
|
|
|
|
The overload signatures are also visible in the method's docstring:
|
|
|
|
|
2016-06-03 09:19:29 +00:00
|
|
|
.. code-block:: pycon
|
2015-10-13 00:57:16 +00:00
|
|
|
|
|
|
|
>>> help(example.Pet)
|
|
|
|
|
|
|
|
class Pet(__builtin__.object)
|
|
|
|
| Methods defined here:
|
|
|
|
|
|
|
|
|
| __init__(...)
|
2016-01-17 21:36:44 +00:00
|
|
|
| Signature : (Pet, str, int) -> NoneType
|
2015-10-13 00:57:16 +00:00
|
|
|
|
|
|
|
|
| set(...)
|
2016-01-17 21:36:44 +00:00
|
|
|
| 1. Signature : (Pet, int) -> NoneType
|
2015-10-13 00:57:16 +00:00
|
|
|
|
|
|
|
|
| Set the pet's age
|
|
|
|
|
|
2016-01-17 21:36:44 +00:00
|
|
|
| 2. Signature : (Pet, str) -> NoneType
|
2015-10-13 00:57:16 +00:00
|
|
|
|
|
|
|
|
| Set the pet's name
|
2015-10-13 21:21:54 +00:00
|
|
|
|
2016-12-08 10:07:52 +00:00
|
|
|
If you have a C++14 compatible compiler [#cpp14]_, you can use an alternative
|
|
|
|
syntax to cast the overloaded function:
|
|
|
|
|
|
|
|
.. code-block:: cpp
|
|
|
|
|
|
|
|
py::class_<Pet>(m, "Pet")
|
|
|
|
.def("set", py::overload_cast<int>(&Pet::set), "Set the pet's age")
|
|
|
|
.def("set", py::overload_cast<const std::string &>(&Pet::set), "Set the pet's name");
|
|
|
|
|
|
|
|
Here, ``py::overload_cast`` only requires the parameter types to be specified.
|
|
|
|
The return type and class are deduced. This avoids the additional noise of
|
|
|
|
``void (Pet::*)()`` as seen in the raw cast. If a function is overloaded based
|
|
|
|
on constness, the ``py::const_`` tag should be used:
|
|
|
|
|
|
|
|
.. code-block:: cpp
|
|
|
|
|
|
|
|
struct Widget {
|
|
|
|
int foo(int x, float y);
|
|
|
|
int foo(int x, float y) const;
|
|
|
|
};
|
|
|
|
|
|
|
|
py::class_<Widget>(m, "Widget")
|
|
|
|
.def("foo_mutable", py::overload_cast<int, float>(&Widget::foo))
|
|
|
|
.def("foo_const", py::overload_cast<int, float>(&Widget::foo, py::const_));
|
|
|
|
|
2019-08-19 10:54:33 +00:00
|
|
|
If you prefer the ``py::overload_cast`` syntax but have a C++11 compatible compiler only,
|
|
|
|
you can use ``py::detail::overload_cast_impl`` with an additional set of parentheses:
|
|
|
|
|
|
|
|
.. code-block:: cpp
|
|
|
|
|
|
|
|
template <typename... Args>
|
|
|
|
using overload_cast_ = pybind11::detail::overload_cast_impl<Args...>;
|
|
|
|
|
|
|
|
py::class_<Pet>(m, "Pet")
|
|
|
|
.def("set", overload_cast_<int>()(&Pet::set), "Set the pet's age")
|
|
|
|
.def("set", overload_cast_<const std::string &>()(&Pet::set), "Set the pet's name");
|
2016-12-08 10:07:52 +00:00
|
|
|
|
|
|
|
.. [#cpp14] A compiler which supports the ``-std=c++14`` flag
|
|
|
|
or Visual Studio 2015 Update 2 and newer.
|
|
|
|
|
2015-10-13 21:21:54 +00:00
|
|
|
.. note::
|
|
|
|
|
|
|
|
To define multiple overloaded constructors, simply declare one after the
|
|
|
|
other using the ``.def(py::init<...>())`` syntax. The existing machinery
|
|
|
|
for specifying keyword and default arguments also works.
|
2015-10-13 00:57:16 +00:00
|
|
|
|
|
|
|
Enumerations and internal types
|
|
|
|
===============================
|
|
|
|
|
2021-09-30 18:45:06 +00:00
|
|
|
Let's now suppose that the example class contains internal types like enumerations, e.g.:
|
2015-10-13 00:57:16 +00:00
|
|
|
|
|
|
|
.. code-block:: cpp
|
|
|
|
|
|
|
|
struct Pet {
|
|
|
|
enum Kind {
|
|
|
|
Dog = 0,
|
|
|
|
Cat
|
|
|
|
};
|
|
|
|
|
2021-09-30 18:45:06 +00:00
|
|
|
struct Attributes {
|
|
|
|
float age = 0;
|
|
|
|
};
|
|
|
|
|
2015-10-13 00:57:16 +00:00
|
|
|
Pet(const std::string &name, Kind type) : name(name), type(type) { }
|
|
|
|
|
|
|
|
std::string name;
|
|
|
|
Kind type;
|
2021-09-30 18:45:06 +00:00
|
|
|
Attributes attr;
|
2015-10-13 00:57:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
The binding code for this example looks as follows:
|
|
|
|
|
|
|
|
.. code-block:: cpp
|
|
|
|
|
|
|
|
py::class_<Pet> pet(m, "Pet");
|
|
|
|
|
|
|
|
pet.def(py::init<const std::string &, Pet::Kind>())
|
|
|
|
.def_readwrite("name", &Pet::name)
|
2021-09-30 18:45:06 +00:00
|
|
|
.def_readwrite("type", &Pet::type)
|
|
|
|
.def_readwrite("attr", &Pet::attr);
|
2015-10-13 00:57:16 +00:00
|
|
|
|
|
|
|
py::enum_<Pet::Kind>(pet, "Kind")
|
|
|
|
.value("Dog", Pet::Kind::Dog)
|
|
|
|
.value("Cat", Pet::Kind::Cat)
|
|
|
|
.export_values();
|
|
|
|
|
2021-09-30 18:45:06 +00:00
|
|
|
py::class_<Pet::Attributes> attributes(pet, "Attributes")
|
|
|
|
.def(py::init<>())
|
|
|
|
.def_readwrite("age", &Pet::Attributes::age);
|
|
|
|
|
|
|
|
|
|
|
|
To ensure that the nested types ``Kind`` and ``Attributes`` are created within the scope of ``Pet``, the
|
|
|
|
``pet`` :class:`class_` instance must be supplied to the :class:`enum_` and :class:`class_`
|
2015-10-13 21:21:54 +00:00
|
|
|
constructor. The :func:`enum_::export_values` function exports the enum entries
|
|
|
|
into the parent scope, which should be skipped for newer C++11-style strongly
|
|
|
|
typed enums.
|
2015-10-13 00:57:16 +00:00
|
|
|
|
2016-06-03 09:19:29 +00:00
|
|
|
.. code-block:: pycon
|
2015-10-13 00:57:16 +00:00
|
|
|
|
2021-09-22 19:38:50 +00:00
|
|
|
>>> p = Pet("Lucy", Pet.Cat)
|
2015-10-13 00:57:16 +00:00
|
|
|
>>> p.type
|
|
|
|
Kind.Cat
|
|
|
|
>>> int(p.type)
|
|
|
|
1L
|
|
|
|
|
2017-03-03 16:45:50 +00:00
|
|
|
The entries defined by the enumeration type are exposed in the ``__members__`` property:
|
|
|
|
|
|
|
|
.. code-block:: pycon
|
|
|
|
|
|
|
|
>>> Pet.Kind.__members__
|
|
|
|
{'Dog': Kind.Dog, 'Cat': Kind.Cat}
|
2015-10-13 00:57:16 +00:00
|
|
|
|
2018-04-02 21:26:48 +00:00
|
|
|
The ``name`` property returns the name of the enum value as a unicode string.
|
|
|
|
|
|
|
|
.. note::
|
|
|
|
|
|
|
|
It is also possible to use ``str(enum)``, however these accomplish different
|
|
|
|
goals. The following shows how these two approaches differ.
|
|
|
|
|
|
|
|
.. code-block:: pycon
|
|
|
|
|
2021-09-22 19:38:50 +00:00
|
|
|
>>> p = Pet("Lucy", Pet.Cat)
|
2018-04-02 21:26:48 +00:00
|
|
|
>>> pet_type = p.type
|
|
|
|
>>> pet_type
|
|
|
|
Pet.Cat
|
|
|
|
>>> str(pet_type)
|
|
|
|
'Pet.Cat'
|
|
|
|
>>> pet_type.name
|
|
|
|
'Cat'
|
|
|
|
|
2016-11-17 22:24:47 +00:00
|
|
|
.. note::
|
|
|
|
|
|
|
|
When the special tag ``py::arithmetic()`` is specified to the ``enum_``
|
|
|
|
constructor, pybind11 creates an enumeration that also supports rudimentary
|
|
|
|
arithmetic and bit-level operations like comparisons, and, or, xor, negation,
|
|
|
|
etc.
|
|
|
|
|
|
|
|
.. code-block:: cpp
|
|
|
|
|
|
|
|
py::enum_<Pet::Kind>(pet, "Kind", py::arithmetic())
|
|
|
|
...
|
|
|
|
|
|
|
|
By default, these are omitted to conserve space.
|