std::atomic_fetch_xor, std::atomic_fetch_xor_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. |
<metanoindex/>
<tbody> </tbody>| Elemento definito nell'header <atomic>
|
||
template< class Integral > Integral atomic_fetch_xor( std::atomic<Integral>* obj, Integral arg ); |
(1) | (dal C++11) |
template< class Integral > Integral atomic_fetch_xor( volatile std::atomic<Integral>* obj, Integral arg ); |
(2) | (dal C++11) |
template< class Integral > Integral atomic_fetch_xor_explicit( std::atomic<Integral>* obj, Integral arg, std::memory_order order ); |
(3) | (dal C++11) |
template< class Integral > Integral atomic_fetch_xor_explicit( volatile std::atomic<Integral>* obj, Integral arg, std::memory_order order ); |
(4) | (dal C++11) |
1-2)
Sostituisce atomico il valore puntato dal
arg con il risultato di XOR bit a 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 XOR 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.
3-4)
Sostituisce atomico il valore puntato dal
arg con il risultato di XOR bit a 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 XOR 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.
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 bitwise XOR con il valore memorizzato nell'oggetto atomica
Original: the value to bitwise XOR 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 | - | sycnhronization la memoria di ordinazione per questa operazione: tutti i valori sono consentiti .
Original: the memory sycnhronization 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. |
Valore di ritorno
Il valore contenuto in precedenza dall'oggetto atomico puntato da
objOriginal:
The value held previously by the atomic object pointed to by
objThe 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.
Eccezioni
Possibile implementazione
template< class T >
typename std::enable_if<std::is_integral<T>::value && !std::is_same<T, bool>::value, T>::type
atomic_fetch_xor( std::atomic<T>* obj, T arg );
{
return obj->fetch_xor(arg);
}
|
Esempio
| This section is incomplete Reason: no example |
Vedi anche
(C++11) |
esegue atomicamente bitwise XOR tra l'argomento e il valore dell'oggetto atomico e ottiene il valore contenuto precedentemente Original: atomically performs bitwise XOR 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 AND logico con un non-atomico argomento e ottiene il valore precedente della atomico Original: replaces the atomic object with the result of logical AND 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_xor, atomic_fetch_xor_explicit
| |