Namensräume
Varianten

std::shared_ptr::operator=

Aus cppreference.com
< cpp‎ | memory‎ | shared ptr

 
 
 
Dynamische Speicherverwaltung
Low-Level-Speicherverwaltung
Zuweiser
Original:
Allocators
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
allocator
allocator_traits(C++11)
allocator_arg_t(C++11)
allocator_arg(C++11)
uses_allocator(C++11)
scoped_allocator_adaptor(C++11)
Initialisierter Speicher
Original:
Uninitialized storage
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
uninitialized_copy
uninitialized_copy_n(C++11)
uninitialized_fill
uninitialized_fill_n
raw_storage_iterator
get_temporary_buffer
return_temporary_buffer
Intelligente Zeiger
Original:
Smart pointers
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
unique_ptr(C++11)
shared_ptr(C++11)
weak_ptr(C++11)
auto_ptr(veraltet)
owner_less(C++11)
enable_shared_from_this(C++11)
bad_weak_ptr(C++11)
default_delete(C++11)
Garbage Collection Unterstützung
Original:
Garbage collection support
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
declare_reachable(C++11)
undeclare_reachable(C++11)
declare_no_pointers(C++11)
undeclare_no_pointers(C++11)
pointer_safety(C++11)
get_pointer_safety(C++11)
Verschiedenes
Original:
Miscellaneous
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
pointer_traits(C++11)
addressof(C++11)
align(C++11)
C-Bibliothek
Original:
C Library
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
 
std::shared_ptr
Member-Funktionen
Original:
Member functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
shared_ptr::shared_ptr
shared_ptr::~shared_ptr
shared_ptr::operator=
Modifiers
Original:
Modifiers
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
shared_ptr::reset
shared_ptr::swap
Beobachter
Original:
Observers
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
shared_ptr::get
shared_ptr::operator*
shared_ptr::operator->
shared_ptr::use_count
shared_ptr::unique
shared_ptr::operator bool
shared_ptr::owner_before
Non-Member-Funktionen
Original:
Non-member functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
std::swap
make_shared
allocate_shared
static_pointer_cast
dynamic_pointer_cast
const_pointer_cast
get_deleter
operator==
operator|=
operator<
operator<=
operator>
operator>=
operator<<
atomic_is_lock_free
atomic_load
atomic_load_explicit
atomic_store
atomic_store_explicit
atomic_exchange
atomic_exchange_explicit
atomic_compare_exchange_weak
atomic_compare_exchange_strong
atomic_compare_exchange_weak_explicit
atomic_compare_exchange_strong_explicit
std::hash
 
shared_ptr& operator=(const shared_ptr& r );
(1)
template<class Y >
shared_ptr& operator=(const shared_ptr<Y>& r );
(1)
shared_ptr& operator=( shared_ptr&& r );
(2)
template<class Y >
shared_ptr& operator=( shared_ptr<Y>&& r );
(2)
template<class Y >
shared_ptr& operator=(std::auto_ptr<Y>&& r );
(3)
template<class Y, class Deleter >
shared_ptr& operator=(std::unique_ptr<Y,Deleter>&& r );
(4)
Ersetzt das verwaltete Objekt mit dem von r geschafft .
Original:
Replaces the managed object with the one managed by r.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
1)
Aktien Besitz des Objekts verwaltet von r. Wenn r kein Objekt verwaltet, verwaltet *this kein Objekt zu. Die Vorlagen Überlastung nicht in der Überladungsauflösung teilnehmen, wenn Y* weder implizit konvertierbar T*. Entspricht shared_ptr<T> p(r).swap(*this) .
Original:
Shares ownership of the object managed by r. If r manages no object, *this manages no object too. The templated overload doesn't participate in the overload resolution if Y* is not implicitly convertible to T*. Equivalent to shared_ptr<T> p(r).swap(*this).
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
2)
Move-ordnet shared_ptr von r. Nach der Abtretung *this eine Kopie des vorherigen Zustand r enthält, r ist leer. Die Vorlagen Überlastung nicht in der Überladungsauflösung teilnehmen, wenn Y* weder implizit konvertierbar T*. Entspricht shared_ptr<T> p(std::move(r)).swap(*this) .
Original:
Move-assigns a shared_ptr from r. After the assignment, *this contains a copy of the previous state of r, r is empty. The templated overload doesn't participate in the overload resolution if Y* is not implicitly convertible to T*. Equivalent to shared_ptr<T> p(std::move(r)).swap(*this).
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
3) 4)
Überträgt das Eigentum an dem Objekt durch r um *this verwaltet. Die deleter zugeordneten r ist für zukünftige Deletion des verwalteten Objekts gespeichert. r verwaltet kein Objekt nach dem Aufruf. Entspricht shared_ptr<T> p(std::move(r)).swap(*this) .
Original:
Transfers the ownership of the object managed by r to *this. The deleter associated to r is stored for future deletion of the managed object. r manages no object after the call. Equivalent to shared_ptr<T> p(std::move(r)).swap(*this).
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Inhaltsverzeichnis

[Bearbeiten]Parameter

r -
ein weiteres Smart-Pointer, das Eigentum zu teilen oder erwirbt das Eigentum aus
Original:
another smart pointer to share the ownership to or acquire the ownership from
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[Bearbeiten]Rückgabewert

*this

[Bearbeiten]Notes

Die Implementierung kann die Anforderungen ohne eine temporäre shared_ptr Objekt treffen .
Original:
The implementation may meet the requirements without creating a temporary shared_ptr object.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[Bearbeiten]Ausnahmen

1-2)
noexcept specification:  
noexcept
  (seit C++11)
3)
(None)
Original:
(none)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
4-5)
noexcept specification:  
noexcept
  (seit C++11)

[Bearbeiten]Beispiel

[Bearbeiten]Siehe auch

ersetzt das verwaltete Objekt
Original:
replaces the managed object
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(öffentliche Elementfunktion)[edit]
close