std::atomic_fetch_and, std::atomic_fetch_and_explicit
Da cppreference.com.
![]() |
Questa pagina è stata tradotta in modo automatico dalla versione in ineglese della wiki usando Google Translate.
La traduzione potrebbe contenere errori e termini strani. Muovi il puntatore sopra al testo per vedere la versione originale. Puoi aiutarci a correggere gli gli errori. Per ulteriori istruzioni clicca qui. |
Elemento definito nell'header <atomic>
|
||
template< class Integral > Integral atomic_fetch_and( std::atomic<Integral>* obj, Integral arg ); |
(1) | (dal C++11) |
template< class Integral > Integral atomic_fetch_and( volatile std::atomic<Integral>* obj, Integral arg ); |
(2) | (dal C++11) |
template< class Integral > Integral atomic_fetch_and_explicit( std::atomic<Integral>* obj, Integral arg, |
(3) | (dal C++11) |
template< class Integral > Integral atomic_fetch_and_explicit( volatile std::atomic<Integral>* obj, Integral arg, |
(4) | (dal C++11) |
Sostituisce atomico il valore puntato dal
3-4) arg
con il risultato di AND bit per bit tra il valore storico di obj
e arg
, e restituisce il valore obj
precedentemente detenuta, come per obj->fetch_and(arg)Original:
Atomically replaces the value pointed by
arg
with the result of bitwise AND between the old value of obj
and arg
, and returns the value obj
held previously, as if by obj->fetch_and(arg)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.
Sostituisce atomico il valore puntato dal
arg
con il risultato di AND bit per bit tra il valore storico di obj
e arg
, e restituisce il valore obj
precedentemente detenuta, come per obj->fetch_and(arg, order)Original:
Atomically replaces the value pointed by
arg
with the result of bitwise AND between the old value of obj
and arg
, and returns the value obj
held previously, as if by obj->fetch_and(arg, order)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.
Indice |
[modifica] Parametri
obj | - | puntatore all'oggetto atomica da modificare
Original: pointer to the atomic object to modify The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
arg | - | il valore di bit AND al valore memorizzato nell'oggetto atomica
Original: the value to bitwise AND to the value stored in the atomic object The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
order | - | la sincronizzazione della memoria di ordinazione per questa operazione: tutti i valori sono consentiti .
Original: the memory synchronization ordering for this operation: all values are permitted. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[modifica] Valore di ritorno
Il valore contenuto in precedenza dall'oggetto atomico puntato da
obj
Original:
The value held previously by the atomic object pointed to by
obj
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.
[modifica] Eccezioni
[modifica] Possibile implementazione
template< class T > typename std::enable_if<std::is_integral<T>::value && !std::is_same<T, bool>::value, T>::type atomic_fetch_and(std::atomic<T>* obj, T arg); { return obj->fetch_and(arg); } |
[modifica] Esempio
This section is incomplete Reason: no example |
[modifica] Vedi anche
(C++11) |
esegue atomicamente l'AND bit a bit tra l'argomento e il valore dell'oggetto atomico e ottiene il valore contenuto precedentemente Original: atomically performs bitwise AND between the argument and the value of the atomic object and obtains the value held previously The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (metodo pubblico) |
(C++11) (C++11) |
sostituisce l'oggetto atomico con il risultato di OR logico con un non-atomico argomento e ottiene il valore precedente della atomico Original: replaces the atomic object with the result of logical OR with a non-atomic argument and obtains the previous value of the atomic The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (funzione di modello) |
(C++11) (C++11) |
sostituisce l'oggetto atomico con il risultato di logica XOR con un non-atomico argomento e ottiene il valore precedente della atomico Original: replaces the atomic object with the result of logical XOR with a non-atomic argument and obtains the previous value of the atomic The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (funzione di modello) |
C documentation for atomic_fetch_and, atomic_fetch_and_explicit
|