サーチ…


Parallel.Forループ内の変数へのアクセスの制御

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 );
    }
}

read-modify-write操作がアトミックではないため、ロックなしでsum = sum + iを実行するだけでは不十分です。スレッドへの外部変更上書きされsumが現在の値読み取った後に発生sumが、それはの修正値記憶前sum + iバックにsum



Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow