Interlocked.CompareExchange Metoda

Definicja

Porównuje dwie wartości równości i, jeśli są równe, zastępuje pierwszą wartość jako operację niepodzielna.

Przeciążenia

Nazwa Opis
CompareExchange(Double, Double, Double)

Porównuje dwie liczby zmiennoprzecinkowe o podwójnej precyzji i, jeśli są równe, zastępuje pierwszą wartość jako operację niepodzielna.

CompareExchange(Int32, Int32, Int32)

Porównuje dwie 32-bitowe liczby całkowite ze znakiem równości, a jeśli są równe, zastępuje pierwszą wartość jako operację niepodzielna.

CompareExchange(Int64, Int64, Int64)

Porównuje dwie 64-bitowe liczby całkowite ze znakiem równości, a jeśli są równe, zastępuje pierwszą wartość jako operację niepodzielna.

CompareExchange(IntPtr, IntPtr, IntPtr)

Porównuje dwie liczby całkowite ze znakiem natywnym pod kątem równości i, jeśli są równe, zastępuje pierwszą z nich jako operację niepodzielna.

CompareExchange(Object, Object, Object)

Porównuje dwa obiekty pod kątem równości odwołań, a jeśli są równe, zastępuje pierwszy obiekt jako operację niepodzielna.

CompareExchange(Single, Single, Single)

Porównuje dwie liczby zmiennoprzecinkowe o pojedynczej precyzji i, jeśli są równe, zastępuje pierwszą wartość jako operację niepodzielna.

CompareExchange<T>(T, T, T)

Porównuje dwa wystąpienia określonego typu T dla równości odwołań, a jeśli są równe, zastępuje pierwsze wystąpienie jako operację niepodzielna.

CompareExchange(Double, Double, Double)

Porównuje dwie liczby zmiennoprzecinkowe o podwójnej precyzji i, jeśli są równe, zastępuje pierwszą wartość jako operację niepodzielna.

public:
 static double CompareExchange(double % location1, double value, double comparand);
public static double CompareExchange(ref double location1, double value, double comparand);
static member CompareExchange : double * double * double -> double
Public Shared Function CompareExchange (ByRef location1 As Double, value As Double, comparand As Double) As Double

Parametry

location1
Double

Miejsce docelowe, którego wartość jest porównywana z comparand i ewentualnie zastępowana.

value
Double

Wartość, która zastępuje wartość docelową, jeśli porównanie powoduje równość.

comparand
Double

Wartość porównywana z wartością na location1.

Zwraca

Oryginalna wartość w pliku location1.

Wyjątki

Adres location1 obiektu to wskaźnik o wartości null.

Przykłady

Poniższy przykład kodu przedstawia metodę bezpieczną wątkowo, która gromadzi bieżącą sumę Double wartości. Dwa wątki dodają serię Double wartości przy użyciu metody bezpiecznej wątkowo i zwykłego dodawania, a gdy wątki zakończą sumę. Na komputerze z dwoma procesorami istnieje znacząca różnica w sumach.

W metodzie bezpiecznej wątkowo początkowa suma bieżąca jest zapisywana, a następnie CompareExchange metoda jest używana do wymiany nowo obliczonej sumy ze starą sumą. Jeśli wartość zwracana nie jest równa zapisanej wartości sumy bieżącej, inny wątek zaktualizował sumę w międzyczasie. W takim przypadku próba zaktualizowania sumy bieżącej musi zostać powtórzona.

// This example demonstrates a thread-safe method that adds to a
// running total.  
using System;
using System.Threading;

public class ThreadSafe
{
    // Field totalValue contains a running total that can be updated
    // by multiple threads. It must be protected from unsynchronized 
    // access.
    private double totalValue = 0.0;

    // The Total property returns the running total.
    public double Total { get { return totalValue; }}

    // AddToTotal safely adds a value to the running total.
    public double AddToTotal(double addend)
    {
        double initialValue, computedValue;
        do
        {
            // Save the current running total in a local variable.
            initialValue = totalValue;

            // Add the new value to the running total.
            computedValue = initialValue + addend;

            // CompareExchange compares totalValue to initialValue. If
            // they are not equal, then another thread has updated the
            // running total since this loop started. CompareExchange
            // does not update totalValue. CompareExchange returns the
            // contents of totalValue, which do not equal initialValue,
            // so the loop executes again.
        }
        while (initialValue != Interlocked.CompareExchange(ref totalValue, 
            computedValue, initialValue));
        // If no other thread updated the running total, then 
        // totalValue and initialValue are equal when CompareExchange
        // compares them, and computedValue is stored in totalValue.
        // CompareExchange returns the value that was in totalValue
        // before the update, which is equal to initialValue, so the 
        // loop ends.

        // The function returns computedValue, not totalValue, because
        // totalValue could be changed by another thread between
        // the time the loop ends and the function returns.
        return computedValue;
    }
}

public class Test
{
    // Create an instance of the ThreadSafe class to test.
    private static ThreadSafe ts = new ThreadSafe();
    private static double control;

    private static Random r = new Random();
    private static ManualResetEvent mre = new ManualResetEvent(false);

    public static void Main()
    {
        // Create two threads, name them, and start them. The
        // thread will block on mre.
        Thread t1 = new Thread(TestThread);
        t1.Name = "Thread 1";
        t1.Start();
        Thread t2 = new Thread(TestThread);
        t2.Name = "Thread 2";
        t2.Start();

        // Now let the threads begin adding random numbers to 
        // the total.
        mre.Set();
        
        // Wait until all the threads are done.
        t1.Join();
        t2.Join();

        Console.WriteLine("Thread safe: {0}  Ordinary Double: {1}", 
            ts.Total, control);
    }

    private static void TestThread()
    {
        // Wait until the signal.
        mre.WaitOne();

        for(int i = 1; i <= 1000000; i++)
        {
            // Add to the running total in the ThreadSafe instance, and
            // to an ordinary double.
            //
            double testValue = r.NextDouble();
            control += testValue;
            ts.AddToTotal(testValue);
        }
    }
}

/* On a dual-processor computer, this code example produces output 
   similar to the following:

Thread safe: 998068.049623744  Ordinary Double: 759775.417190589
 */
' This example demonstrates a thread-safe method that adds to a
' running total.  
Imports System.Threading

Public Class ThreadSafe
    ' Field totalValue contains a running total that can be updated
    ' by multiple threads. It must be protected from unsynchronized 
    ' access.
    Private totalValue As Double = 0.0

    ' The Total property returns the running total.
    Public ReadOnly Property Total As Double
        Get
            Return totalValue
        End Get
    End Property

    ' AddToTotal safely adds a value to the running total.
    Public Function AddToTotal(ByVal addend As Double) As Double
        Dim initialValue, computedValue As Double
        Do
            ' Save the current running total in a local variable.
            initialValue = totalValue

            ' Add the new value to the running total.
            computedValue = initialValue + addend

            ' CompareExchange compares totalValue to initialValue. If
            ' they are not equal, then another thread has updated the
            ' running total since this loop started. CompareExchange
            ' does not update totalValue. CompareExchange returns the
            ' contents of totalValue, which do not equal initialValue,
            ' so the loop executes again.
        Loop While initialValue <> Interlocked.CompareExchange( _
            totalValue, computedValue, initialValue)
        ' If no other thread updated the running total, then 
        ' totalValue and initialValue are equal when CompareExchange
        ' compares them, and computedValue is stored in totalValue.
        ' CompareExchange returns the value that was in totalValue
        ' before the update, which is equal to initialValue, so the 
        ' loop ends.

        ' The function returns computedValue, not totalValue, because
        ' totalValue could be changed by another thread between
        ' the time the loop ends and the function returns.
        Return computedValue
    End Function
End Class

Public Class Test
    ' Create an instance of the ThreadSafe class to test.
    Private Shared ts As New ThreadSafe()
    Private Shared control As Double

    Private Shared r As New Random()
    Private Shared mre As New ManualResetEvent(false)

    <MTAThread> _
    Public Shared Sub Main()
        ' Create two threads, name them, and start them. The
        ' threads will block on mre.
        Dim t1 As New Thread(AddressOf TestThread)
        t1.Name = "Thread 1"
        t1.Start()
        Dim t2 As New Thread(AddressOf TestThread)
        t2.Name = "Thread 2"
        t2.Start()

        ' Now let the threads begin adding random numbers to 
        ' the total.
        mre.Set()
        
        ' Wait until all the threads are done.
        t1.Join()
        t2.Join()

        Console.WriteLine("Thread safe: {0}  Ordinary Double: {1}", ts.Total, control)
    End Sub

    Private Shared Sub TestThread()
        ' Wait until the signal.
        mre.WaitOne()

        For i As Integer = 1 to 1000000
            ' Add to the running total in the ThreadSafe instance, and
            ' to an ordinary double.
            '
            Dim testValue As Double = r.NextDouble
            control += testValue
            ts.AddToTotal(testValue)
        Next
    End Sub
End Class

' On a dual-processor computer, this code example produces output 
' similar to the following:
'
'Thread safe: 998068.049623744  Ordinary Double: 759775.417190589

Uwagi

Jeśli comparand i wartość w location1 pliku są równe, value jest przechowywany w pliku location1. W przeciwnym razie nie jest wykonywana żadna operacja. Operacje porównania i wymiany są wykonywane jako operacja niepodzielna. Zwracana wartość to oryginalna wartość CompareExchange w elemocie location1, niezależnie od tego, czy wymiana odbywa się.

Zobacz też

Dotyczy

CompareExchange(Int32, Int32, Int32)

Porównuje dwie 32-bitowe liczby całkowite ze znakiem równości, a jeśli są równe, zastępuje pierwszą wartość jako operację niepodzielna.

public:
 static int CompareExchange(int % location1, int value, int comparand);
public static int CompareExchange(ref int location1, int value, int comparand);
static member CompareExchange : int * int * int -> int
Public Shared Function CompareExchange (ByRef location1 As Integer, value As Integer, comparand As Integer) As Integer

Parametry

location1
Int32

Miejsce docelowe, którego wartość jest porównywana z comparand i ewentualnie zastępowana.

value
Int32

Wartość, która zastępuje wartość docelową, jeśli porównanie powoduje równość.

comparand
Int32

Wartość porównywana z wartością na location1.

Zwraca

Oryginalna wartość w pliku location1.

Wyjątki

Adres location1 obiektu to wskaźnik o wartości null.

Przykłady

W poniższym przykładzie kodu pokazano metodę bezpieczną wątkowo, która gromadzi sumę bieżącą. Początkowa wartość sumy bieżącej jest zapisywana, a następnie CompareExchange metoda jest używana do wymiany nowo obliczonej sumy ze starą sumą. Jeśli wartość zwracana nie jest równa zapisanej wartości sumy bieżącej, inny wątek zaktualizował sumę w międzyczasie. W takim przypadku próba zaktualizowania sumy bieżącej musi zostać powtórzona.

Note

Metoda Add zapewnia wygodniejszy sposób gromadzenia sum działających bezpiecznie wątkowo dla liczb całkowitych.

// This example demonstrates a thread-safe method that adds to a
// running total.  It cannot be run directly.  You can compile it
// as a library, or add the class to a project.
using System.Threading;

public class ThreadSafe {
    // totalValue contains a running total that can be updated
    // by multiple threads. It must be protected from unsynchronized 
    // access.
    private int totalValue = 0;

    // The Total property returns the running total.
    public int Total {
        get { return totalValue; }
    }

    // AddToTotal safely adds a value to the running total.
    public int AddToTotal(int addend) {
        int initialValue, computedValue;
        do {
            // Save the current running total in a local variable.
            initialValue = totalValue;

            // Add the new value to the running total.
            computedValue = initialValue + addend;

            // CompareExchange compares totalValue to initialValue. If
            // they are not equal, then another thread has updated the
            // running total since this loop started. CompareExchange
            // does not update totalValue. CompareExchange returns the
            // contents of totalValue, which do not equal initialValue,
            // so the loop executes again.
        } while (initialValue != Interlocked.CompareExchange(
            ref totalValue, computedValue, initialValue));
        // If no other thread updated the running total, then 
        // totalValue and initialValue are equal when CompareExchange
        // compares them, and computedValue is stored in totalValue.
        // CompareExchange returns the value that was in totalValue
        // before the update, which is equal to initialValue, so the 
        // loop ends.

        // The function returns computedValue, not totalValue, because
        // totalValue could be changed by another thread between
        // the time the loop ends and the function returns.
        return computedValue;
    }
}
' This example demonstrates a thread-safe method that adds to a
' running total.  It cannot be run directly.  You can compile it
' as a library, or add the class to a project.
Imports System.Threading

Public Class ThreadSafe
    ' Field totalValue contains a running total that can be updated
    ' by multiple threads. It must be protected from unsynchronized 
    ' access.
    Private totalValue As Integer = 0

    ' The Total property returns the running total.
    Public ReadOnly Property Total As Integer
        Get
            Return totalValue
        End Get
    End Property

    ' AddToTotal safely adds a value to the running total.
    Public Function AddToTotal(ByVal addend As Integer) As Integer
        Dim initialValue, computedValue As Integer
        Do
            ' Save the current running total in a local variable.
            initialValue = totalValue

            ' Add the new value to the running total.
            computedValue = initialValue + addend

            ' CompareExchange compares totalValue to initialValue. If
            ' they are not equal, then another thread has updated the
            ' running total since this loop started. CompareExchange
            ' does not update totalValue. CompareExchange returns the
            ' contents of totalValue, which do not equal initialValue,
            ' so the loop executes again.
        Loop While initialValue <> Interlocked.CompareExchange( _
            totalValue, computedValue, initialValue)
        ' If no other thread updated the running total, then 
        ' totalValue and initialValue are equal when CompareExchange
        ' compares them, and computedValue is stored in totalValue.
        ' CompareExchange returns the value that was in totalValue
        ' before the update, which is equal to initialValue, so the 
        ' loop ends.

        ' The function returns computedValue, not totalValue, because
        ' totalValue could be changed by another thread between
        ' the time the loop ends and the function returns.
        Return computedValue
    End Function
End Class

Uwagi

Jeśli comparand i wartość w location1 pliku są równe, value jest przechowywany w pliku location1. W przeciwnym razie nie jest wykonywana żadna operacja. Operacje porównania i wymiany są wykonywane jako operacja niepodzielna. Zwracana wartość to oryginalna wartość CompareExchange w elemocie location1, niezależnie od tego, czy wymiana odbywa się.

Zobacz też

Dotyczy

CompareExchange(Int64, Int64, Int64)

Porównuje dwie 64-bitowe liczby całkowite ze znakiem równości, a jeśli są równe, zastępuje pierwszą wartość jako operację niepodzielna.

public:
 static long CompareExchange(long % location1, long value, long comparand);
public static long CompareExchange(ref long location1, long value, long comparand);
static member CompareExchange : int64 * int64 * int64 -> int64
Public Shared Function CompareExchange (ByRef location1 As Long, value As Long, comparand As Long) As Long

Parametry

location1
Int64

Miejsce docelowe, którego wartość jest porównywana z comparand i ewentualnie zastępowana.

value
Int64

Wartość, która zastępuje wartość docelową, jeśli porównanie powoduje równość.

comparand
Int64

Wartość porównywana z wartością na location1.

Zwraca

Oryginalna wartość w pliku location1.

Wyjątki

Adres location1 obiektu to wskaźnik o wartości null.

Uwagi

Jeśli comparand i wartość w location1 pliku są równe, value jest przechowywany w pliku location1. W przeciwnym razie nie jest wykonywana żadna operacja. Operacje porównania i wymiany są wykonywane jako operacja niepodzielna. Zwracana wartość to oryginalna wartość CompareExchange w elemocie location1, niezależnie od tego, czy wymiana odbywa się.

Zobacz też

Dotyczy

CompareExchange(IntPtr, IntPtr, IntPtr)

Porównuje dwie liczby całkowite ze znakiem natywnym pod kątem równości i, jeśli są równe, zastępuje pierwszą z nich jako operację niepodzielna.

public:
 static IntPtr CompareExchange(IntPtr % location1, IntPtr value, IntPtr comparand);
public static IntPtr CompareExchange(ref IntPtr location1, IntPtr value, IntPtr comparand);
static member CompareExchange : nativeint * nativeint * nativeint -> nativeint
Public Shared Function CompareExchange (ByRef location1 As IntPtr, value As IntPtr, comparand As IntPtr) As IntPtr

Parametry

location1
IntPtr

nativeint

Miejsce docelowe, którego wartość jest porównywana z wartością comparand i ewentualnie zastąpioną wartością value.

value
IntPtr

nativeint

Wartość, która zastępuje wartość docelową, jeśli porównanie powoduje równość.

comparand
IntPtr

nativeint

Wartość porównywana z wartością na location1.

Zwraca

IntPtr

nativeint

Oryginalna wartość w pliku location1.

Wyjątki

Adres location1 obiektu to wskaźnik o wartości null.

Uwagi

Jeśli comparand i wartość w location1 pliku są równe, value jest przechowywany w pliku location1. W przeciwnym razie nie jest wykonywana żadna operacja. Operacje porównania i wymiany są wykonywane jako operacja niepodzielna. Zwracana wartość tej metody jest oryginalną wartością w location1elemecie , niezależnie od tego, czy ma miejsce wymiana.

Note

IntPtr jest typem specyficznym dla platformy.

Zobacz też

Dotyczy

CompareExchange(Object, Object, Object)

Porównuje dwa obiekty pod kątem równości odwołań, a jeśli są równe, zastępuje pierwszy obiekt jako operację niepodzielna.

public:
 static System::Object ^ CompareExchange(System::Object ^ % location1, System::Object ^ value, System::Object ^ comparand);
public static object CompareExchange(ref object location1, object value, object comparand);
static member CompareExchange : obj * obj * obj -> obj
Public Shared Function CompareExchange (ByRef location1 As Object, value As Object, comparand As Object) As Object

Parametry

location1
Object

Obiekt docelowy, który jest porównywany przez odwołanie do comparand i ewentualnie zastąpiony.

value
Object

Obiekt, który zastępuje obiekt docelowy, jeśli porównanie odwołań powoduje równość.

comparand
Object

Obiekt, który jest porównywany przez odwołanie do obiektu w location1.

Zwraca

Oryginalna wartość w pliku location1.

Wyjątki

Adres location1 jest wskaźnikiem null .

Uwagi

Ważna

Przeciążenie CompareExchange<T>(T, T, T) metody zapewnia ogólną alternatywę, która może być używana dla konkretnych typów referencyjnych.

Jeśli comparand obiekt i obiekt w pliku location1 są równe przez odwołanie, value jest przechowywany w pliku location1. W przeciwnym razie nie jest wykonywana żadna operacja. Operacje porównania i wymiany są wykonywane jako operacja niepodzielna. Zwracana wartość to oryginalna wartość CompareExchange w elemocie location1, niezależnie od tego, czy wymiana odbywa się.

Note

Obiekty są porównywane pod kątem równości odwołań, a nie równości wartości. W rezultacie dwa boxed wystąpienia tego samego typu wartości (na przykład liczba całkowita 3) zawsze wydają się być nierówne i nie jest wykonywana żadna operacja. Nie używaj tego przeciążenia z typami wartości.

Zobacz też

Dotyczy

CompareExchange(Single, Single, Single)

Porównuje dwie liczby zmiennoprzecinkowe o pojedynczej precyzji i, jeśli są równe, zastępuje pierwszą wartość jako operację niepodzielna.

public:
 static float CompareExchange(float % location1, float value, float comparand);
public static float CompareExchange(ref float location1, float value, float comparand);
static member CompareExchange : single * single * single -> single
Public Shared Function CompareExchange (ByRef location1 As Single, value As Single, comparand As Single) As Single

Parametry

location1
Single

Miejsce docelowe, którego wartość jest porównywana z comparand i ewentualnie zastępowana.

value
Single

Wartość, która zastępuje wartość docelową, jeśli porównanie powoduje równość.

comparand
Single

Wartość porównywana z wartością na location1.

Zwraca

Oryginalna wartość w pliku location1.

Wyjątki

Adres location1 obiektu to wskaźnik o wartości null.

Przykłady

Poniższy przykład kodu przedstawia metodę bezpieczną wątkowo, która gromadzi bieżącą sumę Single wartości. Dwa wątki dodają serię Single wartości przy użyciu metody bezpiecznej wątkowo i zwykłego dodawania, a gdy wątki zakończą sumę. Na komputerze z dwoma procesorami istnieje znacząca różnica w sumach.

W metodzie bezpiecznej wątkowo początkowa suma bieżąca jest zapisywana, a następnie CompareExchange metoda jest używana do wymiany nowo obliczonej sumy ze starą sumą. Jeśli wartość zwracana nie jest równa zapisanej wartości sumy bieżącej, inny wątek zaktualizował sumę w międzyczasie. W takim przypadku próba zaktualizowania sumy bieżącej musi zostać powtórzona.

// This example demonstrates a thread-safe method that adds to a
// running total.  
using System;
using System.Threading;

public class ThreadSafe
{
    // Field totalValue contains a running total that can be updated
    // by multiple threads. It must be protected from unsynchronized 
    // access.
    private float totalValue = 0.0F;

    // The Total property returns the running total.
    public float Total { get { return totalValue; }}

    // AddToTotal safely adds a value to the running total.
    public float AddToTotal(float addend)
    {
        float initialValue, computedValue;
        do
        {
            // Save the current running total in a local variable.
            initialValue = totalValue;

            // Add the new value to the running total.
            computedValue = initialValue + addend;

            // CompareExchange compares totalValue to initialValue. If
            // they are not equal, then another thread has updated the
            // running total since this loop started. CompareExchange
            // does not update totalValue. CompareExchange returns the
            // contents of totalValue, which do not equal initialValue,
            // so the loop executes again.
        }
        while (initialValue != Interlocked.CompareExchange(ref totalValue, 
            computedValue, initialValue));
        // If no other thread updated the running total, then 
        // totalValue and initialValue are equal when CompareExchange
        // compares them, and computedValue is stored in totalValue.
        // CompareExchange returns the value that was in totalValue
        // before the update, which is equal to initialValue, so the 
        // loop ends.

        // The function returns computedValue, not totalValue, because
        // totalValue could be changed by another thread between
        // the time the loop ends and the function returns.
        return computedValue;
    }
}

public class Test
{
    // Create an instance of the ThreadSafe class to test.
    private static ThreadSafe ts = new ThreadSafe();
    private static float control;

    private static Random r = new Random();
    private static ManualResetEvent mre = new ManualResetEvent(false);

    public static void Main()
    {
        // Create two threads, name them, and start them. The
        // thread will block on mre.
        Thread t1 = new Thread(TestThread);
        t1.Name = "Thread 1";
        t1.Start();
        Thread t2 = new Thread(TestThread);
        t2.Name = "Thread 2";
        t2.Start();

        // Now let the threads begin adding random numbers to 
        // the total.
        mre.Set();
        
        // Wait until all the threads are done.
        t1.Join();
        t2.Join();

        Console.WriteLine("Thread safe: {0}  Ordinary float: {1}", 
            ts.Total, control);
    }

    private static void TestThread()
    {
        // Wait until the signal.
        mre.WaitOne();

        for(int i = 1; i <= 1000000; i++)
        {
            // Add to the running total in the ThreadSafe instance, and
            // to an ordinary float.
            //
            float testValue = (float) r.NextDouble();
            control += testValue;
            ts.AddToTotal(testValue);
        }
    }
}

/* On a dual-processor computer, this code example produces output 
   similar to the following:

Thread safe: 17039.57  Ordinary float: 15706.44
 */
' This example demonstrates a thread-safe method that adds to a
' running total.  
Imports System.Threading

Public Class ThreadSafe
    ' Field totalValue contains a running total that can be updated
    ' by multiple threads. It must be protected from unsynchronized 
    ' access.
    Private totalValue As Single = 0.0

    ' The Total property returns the running total.
    Public ReadOnly Property Total As Single
        Get
            Return totalValue
        End Get
    End Property

    ' AddToTotal safely adds a value to the running total.
    Public Function AddToTotal(ByVal addend As Single) As Single
        Dim initialValue, computedValue As Single
        Do
            ' Save the current running total in a local variable.
            initialValue = totalValue

            ' Add the new value to the running total.
            computedValue = initialValue + addend

            ' CompareExchange compares totalValue to initialValue. If
            ' they are not equal, then another thread has updated the
            ' running total since this loop started. CompareExchange
            ' does not update totalValue. CompareExchange returns the
            ' contents of totalValue, which do not equal initialValue,
            ' so the loop executes again.
        Loop While initialValue <> Interlocked.CompareExchange( _
            totalValue, computedValue, initialValue)
        ' If no other thread updated the running total, then 
        ' totalValue and initialValue are equal when CompareExchange
        ' compares them, and computedValue is stored in totalValue.
        ' CompareExchange returns the value that was in totalValue
        ' before the update, which is equal to initialValue, so the 
        ' loop ends.

        ' The function returns computedValue, not totalValue, because
        ' totalValue could be changed by another thread between
        ' the time the loop ends and the function returns.
        Return computedValue
    End Function
End Class

Public Class Test
    ' Create an instance of the ThreadSafe class to test.
    Private Shared ts As New ThreadSafe()
    Private Shared control As Single

    Private Shared r As New Random()
    Private Shared mre As New ManualResetEvent(false)

    <MTAThread> _
    Public Shared Sub Main()
        ' Create two threads, name them, and start them. The
        ' threads will block on mre.
        Dim t1 As New Thread(AddressOf TestThread)
        t1.Name = "Thread 1"
        t1.Start()
        Dim t2 As New Thread(AddressOf TestThread)
        t2.Name = "Thread 2"
        t2.Start()

        ' Now let the threads begin adding random numbers to 
        ' the total.
        mre.Set()
        
        ' Wait until all the threads are done.
        t1.Join()
        t2.Join()

        Console.WriteLine("Thread safe: {0}  Ordinary Single: {1}", ts.Total, control)
    End Sub

    Private Shared Sub TestThread()
        ' Wait until the signal.
        mre.WaitOne()

        For i As Integer = 1 to 1000000
            ' Add to the running total in the ThreadSafe instance, and
            ' to an ordinary Single.
            '
            Dim testValue As Single = r.NextDouble()
            control += testValue
            ts.AddToTotal(testValue)
        Next
    End Sub
End Class

' On a dual-processor computer, this code example produces output 
' similar to the following:
'
'Thread safe: 17039.57  Ordinary Single: 15706.44

Uwagi

Jeśli comparand i wartość w location1 pliku są równe, value jest przechowywany w pliku location1. W przeciwnym razie nie jest wykonywana żadna operacja. Operacje porównania i wymiany są wykonywane jako operacja niepodzielna. Zwracana wartość to oryginalna wartość CompareExchange w elemocie location1, niezależnie od tego, czy wymiana odbywa się.

Zobacz też

Dotyczy

CompareExchange<T>(T, T, T)

Porównuje dwa wystąpienia określonego typu T dla równości odwołań, a jeśli są równe, zastępuje pierwsze wystąpienie jako operację niepodzielna.

public:
generic <typename T>
 where T : class static T CompareExchange(T % location1, T value, T comparand);
public static T CompareExchange<T>(ref T location1, T value, T comparand) where T : class;
[System.Runtime.InteropServices.ComVisible(false)]
public static T CompareExchange<T>(ref T location1, T value, T comparand) where T : class;
static member CompareExchange : 'T * 'T * 'T -> 'T (requires 'T : null)
[<System.Runtime.InteropServices.ComVisible(false)>]
static member CompareExchange : 'T * 'T * 'T -> 'T (requires 'T : null)
Public Shared Function CompareExchange(Of T As Class) (ByRef location1 As T, value As T, comparand As T) As T

Parametry typu

T

Typ, który ma być używany dla location1, valuei comparand.

Parametry

location1
T

Miejsce docelowe, którego wartość jest porównywana przez odwołanie do comparand i ewentualnie zastąpione. Jest to parametr referencyjny (ref w języku C#, ByRef w Visual Basic).

value
T

Wartość, która zastępuje wartość docelową, jeśli porównanie przez odwołanie powoduje równość.

comparand
T

Wartość, która jest porównywana przez odwołanie do wartości na location1.

Zwraca

T

Oryginalna wartość w pliku location1.

Atrybuty

Wyjątki

Adres location1 obiektu to wskaźnik o wartości null.

Określono nieobsługiwane T . W wersji .NET 8 i starszych T musi być typem odwołania. W .NET 9 lub nowszych wersjach T musi być typem odwołania, pierwotnego lub wyliczenia.

Uwagi

Jeśli comparand wartość w location1 elemencie jest równa odwołaniu, value wartość jest przechowywana w elemencie location1. W przeciwnym razie nie jest wykonywana żadna operacja. Porównanie i wymiana są wykonywane jako operacja niepodzielna. Zwracana wartość tej metody jest oryginalną wartością w location1elemecie , niezależnie od tego, czy ma miejsce wymiana.

Dotyczy