std::function::operator=
Материал из cppreference.com
< cpp | utility | functional | function
|
|
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
| function& operator=( const function& ); |
(1) | (начиная с C++11) |
| function& operator=( function&& ); |
(2) | (начиная с C++11) |
| function& operator=( nullptr_t ); |
(3) | (начиная с C++11) |
| template< class F > function& operator=( F&& ); |
(4) | (начиная с C++11) |
| template< class F > function& operator=( reference_wrapper<F> ); |
(5) | (начиная с C++11) |
| Этот раздел не завершён |
Содержание |
[править] Параметры
| Этот раздел не завершён |
[править] Возвращаемое значение
*this
[править] Исключения
1-4)(Нет)
5)
Original:
(none)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[править] См. также
| назначает новые цели Original: assigns a new target The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (public функция-член) | |