Interlocked.Exchange Método
Definição
Define uma variável com um valor especificado como uma operação atômica.Sets a variable to a specified value as an atomic operation.
Sobrecargas
Exchange(Single, Single) |
Define um número de ponto flutuante de precisão simples para um valor especificado e retorna o valor original como uma operação atômica.Sets a single-precision floating point number to a specified value and returns the original value, as an atomic operation. |
Exchange(UInt64, UInt64) |
Define um inteiro sem sinal de 64 bits para um valor especificado e retorna o valor original, como uma operação atômica.Sets a 64-bit unsigned integer to a specified value and returns the original value, as an atomic operation. |
Exchange(UInt32, UInt32) |
Define um inteiro sem sinal de 32 bits com um valor especificado e retorna o valor original, como uma operação atômica.Sets a 32-bit unsigned integer to a specified value and returns the original value, as an atomic operation. |
Exchange(Object, Object) |
Define um objeto com um valor especificado e retorna uma referência ao objeto original, como uma operação atômica.Sets an object to a specified value and returns a reference to the original object, as an atomic operation. |
Exchange(Double, Double) |
Define um número de ponto flutuante de precisão dupla para um valor especificado e retorna o valor original, como uma operação atômica.Sets a double-precision floating point number to a specified value and returns the original value, as an atomic operation. |
Exchange(Int64, Int64) |
Define um inteiro com sinal de 64 bits com um valor especificado e retorna o valor original, como uma operação atômica.Sets a 64-bit signed integer to a specified value and returns the original value, as an atomic operation. |
Exchange(Int32, Int32) |
Define um inteiro com sinal de 32 bits com um valor especificado e retorna o valor original, como uma operação atômica.Sets a 32-bit signed integer to a specified value and returns the original value, as an atomic operation. |
Exchange(IntPtr, IntPtr) |
Define um identificador específico de plataforma ou um ponteiro para um valor especificado e retorna o valor original como uma operação atômica.Sets a platform-specific handle or pointer to a specified value and returns the original value, as an atomic operation. |
Exchange<T>(T, T) |
Define uma variável do tipo |
Exchange(Single, Single)
Define um número de ponto flutuante de precisão simples para um valor especificado e retorna o valor original como uma operação atômica.Sets a single-precision floating point number to a specified value and returns the original value, as an atomic operation.
public:
static float Exchange(float % location1, float value);
public static float Exchange (ref float location1, float value);
static member Exchange : single * single -> single
Public Shared Function Exchange (ByRef location1 As Single, value As Single) As Single
Parâmetros
- location1
- Single
A variável a ser definida com o valor especificado.The variable to set to the specified value.
- value
- Single
O valor para o qual o parâmetro location1
é definido.The value to which the location1
parameter is set.
Retornos
O valor original de location1
.The original value of location1
.
Exceções
O endereço de location1
é um ponteiro null
.The address of location1
is a null
pointer.
Confira também
- Threading gerenciadoManaged Threading
- Visão geral dos primitivos de sincronizaçãoOverview of synchronization primitives
Aplica-se a
Exchange(UInt64, UInt64)
Importante
Esta API não está em conformidade com CLS.
Define um inteiro sem sinal de 64 bits para um valor especificado e retorna o valor original, como uma operação atômica.Sets a 64-bit unsigned integer to a specified value and returns the original value, as an atomic operation.
public:
static System::UInt64 Exchange(System::UInt64 % location1, System::UInt64 value);
[System.CLSCompliant(false)]
public static ulong Exchange (ref ulong location1, ulong value);
[<System.CLSCompliant(false)>]
static member Exchange : uint64 * uint64 -> uint64
Public Shared Function Exchange (ByRef location1 As ULong, value As ULong) As ULong
Parâmetros
- location1
- UInt64
A variável a ser definida com o valor especificado.The variable to set to the specified value.
- value
- UInt64
O valor para o qual o parâmetro location1
é definido.The value to which the location1
parameter is set.
Retornos
O valor original de location1
.The original value of location1
.
- Atributos
Exceções
O endereço de location1
é um ponteiro null
.The address of location1
is a null
pointer.
Aplica-se a
Exchange(UInt32, UInt32)
Importante
Esta API não está em conformidade com CLS.
Define um inteiro sem sinal de 32 bits com um valor especificado e retorna o valor original, como uma operação atômica.Sets a 32-bit unsigned integer to a specified value and returns the original value, as an atomic operation.
public:
static System::UInt32 Exchange(System::UInt32 % location1, System::UInt32 value);
[System.CLSCompliant(false)]
public static uint Exchange (ref uint location1, uint value);
[<System.CLSCompliant(false)>]
static member Exchange : uint32 * uint32 -> uint32
Public Shared Function Exchange (ByRef location1 As UInteger, value As UInteger) As UInteger
Parâmetros
- location1
- UInt32
A variável a ser definida com o valor especificado.The variable to set to the specified value.
- value
- UInt32
O valor para o qual o parâmetro location1
é definido.The value to which the location1
parameter is set.
Retornos
O valor original de location1
.The original value of location1
.
- Atributos
Exceções
O endereço de location1
é um ponteiro null
.The address of location1
is a null
pointer.
Aplica-se a
Exchange(Object, Object)
Define um objeto com um valor especificado e retorna uma referência ao objeto original, como uma operação atômica.Sets an object to a specified value and returns a reference to the original object, as an atomic operation.
public:
static System::Object ^ Exchange(System::Object ^ % location1, System::Object ^ value);
public static object Exchange (ref object location1, object value);
public static object? Exchange (ref object? location1, object? value);
static member Exchange : obj * obj -> obj
Public Shared Function Exchange (ByRef location1 As Object, value As Object) As Object
Parâmetros
- location1
- Object
A variável a ser definida com o valor especificado.The variable to set to the specified value.
- value
- Object
O valor para o qual o parâmetro location1
é definido.The value to which the location1
parameter is set.
Retornos
O valor original de location1
.The original value of location1
.
Exceções
O endereço de location1
é um ponteiro null
.The address of location1
is a null
pointer.
O endereço de location1
é um ponteiro null
.The address of location1
is a null
pointer.
Comentários
Importante
Começando com o .NET Framework 2.0, a sobrecarga do método Exchange<T>(T, T) fornece uma alternativa fortemente tipada para tipos de referência.Beginning with .NET Framework 2.0, the Exchange<T>(T, T) method overload provides a type-safe alternative for reference types. É recomendável chamá-lo em vez dessa sobrecarga.We recommend that you call it instead of this overload.
Confira também
- Threading gerenciadoManaged Threading
- Visão geral dos primitivos de sincronizaçãoOverview of synchronization primitives
Aplica-se a
Exchange(Double, Double)
Define um número de ponto flutuante de precisão dupla para um valor especificado e retorna o valor original, como uma operação atômica.Sets a double-precision floating point number to a specified value and returns the original value, as an atomic operation.
public:
static double Exchange(double % location1, double value);
public static double Exchange (ref double location1, double value);
static member Exchange : double * double -> double
Public Shared Function Exchange (ByRef location1 As Double, value As Double) As Double
Parâmetros
- location1
- Double
A variável a ser definida com o valor especificado.The variable to set to the specified value.
- value
- Double
O valor para o qual o parâmetro location1
é definido.The value to which the location1
parameter is set.
Retornos
O valor original de location1
.The original value of location1
.
Exceções
O endereço de location1
é um ponteiro null
.The address of location1
is a null
pointer.
Confira também
- Threading gerenciadoManaged Threading
- Visão geral dos primitivos de sincronizaçãoOverview of synchronization primitives
Aplica-se a
Exchange(Int64, Int64)
Define um inteiro com sinal de 64 bits com um valor especificado e retorna o valor original, como uma operação atômica.Sets a 64-bit signed integer to a specified value and returns the original value, as an atomic operation.
public:
static long Exchange(long % location1, long value);
public static long Exchange (ref long location1, long value);
static member Exchange : int64 * int64 -> int64
Public Shared Function Exchange (ByRef location1 As Long, value As Long) As Long
Parâmetros
- location1
- Int64
A variável a ser definida com o valor especificado.The variable to set to the specified value.
- value
- Int64
O valor para o qual o parâmetro location1
é definido.The value to which the location1
parameter is set.
Retornos
O valor original de location1
.The original value of location1
.
Exceções
O endereço de location1
é um ponteiro null
.The address of location1
is a null
pointer.
Confira também
- Threading gerenciadoManaged Threading
- Visão geral dos primitivos de sincronizaçãoOverview of synchronization primitives
Aplica-se a
Exchange(Int32, Int32)
Define um inteiro com sinal de 32 bits com um valor especificado e retorna o valor original, como uma operação atômica.Sets a 32-bit signed integer to a specified value and returns the original value, as an atomic operation.
public:
static int Exchange(int % location1, int value);
public static int Exchange (ref int location1, int value);
static member Exchange : int * int -> int
Public Shared Function Exchange (ByRef location1 As Integer, value As Integer) As Integer
Parâmetros
- location1
- Int32
A variável a ser definida com o valor especificado.The variable to set to the specified value.
- value
- Int32
O valor para o qual o parâmetro location1
é definido.The value to which the location1
parameter is set.
Retornos
O valor original de location1
.The original value of location1
.
Exceções
O endereço de location1
é um ponteiro null
.The address of location1
is a null
pointer.
O endereço de location1
é um ponteiro null
.The address of location1
is a null
pointer.
Exemplos
O exemplo de código a seguir mostra um mecanismo de bloqueio de recursos thread-safe.The following code example shows a thread-safe resource locking mechanism.
using namespace System;
using namespace System::Threading;
const int numThreads = 10;
const int numThreadIterations = 5;
ref class MyInterlockedExchangeExampleClass
{
public:
static void MyThreadProc()
{
for ( int i = 0; i < numThreadIterations; i++ )
{
UseResource();
//Wait 1 second before next attempt.
Thread::Sleep( 1000 );
}
}
private:
//A simple method that denies reentrancy.
static bool UseResource()
{
//0 indicates that the method is not in use.
if ( 0 == Interlocked::Exchange( usingResource, 1 ) )
{
Console::WriteLine( " {0} acquired the lock", Thread::CurrentThread->Name );
//Code to access a resource that is not thread safe would go here.
//Simulate some work
Thread::Sleep( 500 );
Console::WriteLine( " {0} exiting lock", Thread::CurrentThread->Name );
//Release the lock
Interlocked::Exchange( usingResource, 0 );
return true;
}
else
{
Console::WriteLine( " {0} was denied the lock", Thread::CurrentThread->Name );
return false;
}
}
//0 for false, 1 for true.
static int usingResource;
};
int main()
{
Thread^ myThread;
Random^ rnd = gcnew Random;
for ( int i = 0; i < numThreads; i++ )
{
myThread = gcnew Thread( gcnew ThreadStart( MyInterlockedExchangeExampleClass::MyThreadProc ) );
myThread->Name = String::Format( "Thread {0}", i + 1 );
//Wait a random amount of time before starting next thread.
Thread::Sleep( rnd->Next( 0, 1000 ) );
myThread->Start();
}
}
using System;
using System.Threading;
namespace InterlockedExchange_Example
{
class MyInterlockedExchangeExampleClass
{
//0 for false, 1 for true.
private static int usingResource = 0;
private const int numThreadIterations = 5;
private const int numThreads = 10;
static void Main()
{
Thread myThread;
Random rnd = new Random();
for(int i = 0; i < numThreads; i++)
{
myThread = new Thread(new ThreadStart(MyThreadProc));
myThread.Name = String.Format("Thread{0}", i + 1);
//Wait a random amount of time before starting next thread.
Thread.Sleep(rnd.Next(0, 1000));
myThread.Start();
}
}
private static void MyThreadProc()
{
for(int i = 0; i < numThreadIterations; i++)
{
UseResource();
//Wait 1 second before next attempt.
Thread.Sleep(1000);
}
}
//A simple method that denies reentrancy.
static bool UseResource()
{
//0 indicates that the method is not in use.
if(0 == Interlocked.Exchange(ref usingResource, 1))
{
Console.WriteLine("{0} acquired the lock", Thread.CurrentThread.Name);
//Code to access a resource that is not thread safe would go here.
//Simulate some work
Thread.Sleep(500);
Console.WriteLine("{0} exiting lock", Thread.CurrentThread.Name);
//Release the lock
Interlocked.Exchange(ref usingResource, 0);
return true;
}
else
{
Console.WriteLine(" {0} was denied the lock", Thread.CurrentThread.Name);
return false;
}
}
}
}
Imports System.Threading
Namespace InterlockedExchange_Example
Class MyInterlockedExchangeExampleClass
'0 for false, 1 for true.
Private Shared usingResource As Integer = 0
Private Const numThreadIterations As Integer = 5
Private Const numThreads As Integer = 10
<MTAThread> _
Shared Sub Main()
Dim myThread As Thread
Dim rnd As New Random()
Dim i As Integer
For i = 0 To numThreads - 1
myThread = New Thread(AddressOf MyThreadProc)
myThread.Name = String.Format("Thread{0}", i + 1)
'Wait a random amount of time before starting next thread.
Thread.Sleep(rnd.Next(0, 1000))
myThread.Start()
Next i
End Sub
Private Shared Sub MyThreadProc()
Dim i As Integer
For i = 0 To numThreadIterations - 1
UseResource()
'Wait 1 second before next attempt.
Thread.Sleep(1000)
Next i
End Sub
'A simple method that denies reentrancy.
Shared Function UseResource() As Boolean
'0 indicates that the method is not in use.
If 0 = Interlocked.Exchange(usingResource, 1) Then
Console.WriteLine("{0} acquired the lock", Thread.CurrentThread.Name)
'Code to access a resource that is not thread safe would go here.
'Simulate some work
Thread.Sleep(500)
Console.WriteLine("{0} exiting lock", Thread.CurrentThread.Name)
'Release the lock
Interlocked.Exchange(usingResource, 0)
Return True
Else
Console.WriteLine(" {0} was denied the lock", Thread.CurrentThread.Name)
Return False
End If
End Function
End Class
End Namespace
Confira também
- Threading gerenciadoManaged Threading
- Visão geral dos primitivos de sincronizaçãoOverview of synchronization primitives
Aplica-se a
Exchange(IntPtr, IntPtr)
Define um identificador específico de plataforma ou um ponteiro para um valor especificado e retorna o valor original como uma operação atômica.Sets a platform-specific handle or pointer to a specified value and returns the original value, as an atomic operation.
public:
static IntPtr Exchange(IntPtr % location1, IntPtr value);
public static IntPtr Exchange (ref IntPtr location1, IntPtr value);
static member Exchange : nativeint * nativeint -> nativeint
Public Shared Function Exchange (ByRef location1 As IntPtr, value As IntPtr) As IntPtr
Parâmetros
- location1
- IntPtr
A variável a ser definida com o valor especificado.The variable to set to the specified value.
- value
- IntPtr
O valor para o qual o parâmetro location1
é definido.The value to which the location1
parameter is set.
Retornos
O valor original de location1
.The original value of location1
.
Exceções
O endereço de location1
é um ponteiro null
.The address of location1
is a null
pointer.
Confira também
- Threading gerenciadoManaged Threading
- Visão geral dos primitivos de sincronizaçãoOverview of synchronization primitives
Aplica-se a
Exchange<T>(T, T)
Define uma variável do tipo T
especificado como um valor especificado e retorna o valor original como uma operação atômica.Sets a variable of the specified type T
to a specified value and returns the original value, as an atomic operation.
public:
generic <typename T>
where T : class static T Exchange(T % location1, T value);
public static T Exchange<T> (ref T location1, T value) where T : class;
[System.Runtime.InteropServices.ComVisible(false)]
public static T Exchange<T> (ref T location1, T value) where T : class;
static member Exchange : 'T * 'T -> 'T (requires 'T : null)
[<System.Runtime.InteropServices.ComVisible(false)>]
static member Exchange : 'T * 'T -> 'T (requires 'T : null)
Public Shared Function Exchange(Of T As Class) (ByRef location1 As T, value As T) As T
Parâmetros de tipo
- T
O tipo a ser usado para o location1
e value
.The type to be used for location1
and value
. Esse tipo deve ser um tipo de referência.This type must be a reference type.
Parâmetros
- location1
- T
A variável a ser definida com o valor especificado.The variable to set to the specified value. Esse é um parâmetro de referência (ref
no C# e ByRef
no Visual Basic).This is a reference parameter (ref
in C#, ByRef
in Visual Basic).
- value
- T
O valor para o qual o parâmetro location1
é definido.The value to which the location1
parameter is set.
Retornos
- T
O valor original de location1
.The original value of location1
.
- Atributos
Exceções
O endereço de location1
é um ponteiro null
.The address of location1
is a null
pointer.
Comentários
Este método só dá suporte a tipos de referência.This method only supports reference types. Há sobrecargas do Exchange método para os tipos de Int32 valor,, Int64 IntPtr , Single e Double , mas não há suporte para outros tipos de valor.There are overloads of the Exchange method for the Int32, Int64, IntPtr, Single, and Double value types, but there is no support for other value types.
Observação
Essa sobrecarga de método é preferível à Exchange(Object, Object) sobrecarga do método, pois o último requer acesso de ligação tardia ao objeto de destino.This method overload is preferable to the Exchange(Object, Object) method overload, because the latter requires late-bound access to the destination object .