Suche…


Steuern des Zugriffs auf eine Variable in einer Parallel.For-Schleife

using System;
using System.Threading;
using System.Threading.Tasks;

class Program
{
    static void Main( string[] args )
    {
        object sync = new object();
        int sum = 0;
        Parallel.For( 1, 1000, ( i ) => {
            lock( sync ) sum = sum + i; // lock is necessary

            // As a practical matter, ensure this `parallel for` executes
            // on multiple threads by simulating a lengthy operation.
            Thread.Sleep( 1 );
        } );
        Console.WriteLine( "Correct answer should be 499500.  sum is: {0}", sum );
    }
}

Es reicht nicht aus, nur sum = sum + i ohne die Sperre auszuführen, da die Lese-, Änderungs- und Schreiboperation nicht atomar ist. Ein Thread überschreibt alle externen Änderungen in sum , die auftreten, nachdem der aktuelle Wert von sum gelesen wurde. Der modifizierte Wert von sum + i wieder in sum .



Modified text is an extract of the original Stack Overflow Documentation
Lizenziert unter CC BY-SA 3.0
Nicht angeschlossen an Stack Overflow