Abbiamo avuto una piccola discussione in ufficio e non abbiamo ricevuto alcuna risposta documentata:I metodi SetValue/GetValue di System.Array sono sicuri per i thread?
È sicuro il thread System.Array.SetValue
?
using System;
using System.Text;
using System.Threading;
namespace MyApp
{
class Program
{
private static readonly object[] arr = new object[3];
static void Main(string[] args)
{
string value1 = "hello";
int value2 = 123;
StringBuilder value3 = new StringBuilder();
value3.Append("this");
value3.Append(" is ");
value3.Append("from the StringBuilder");
var states = new object[]
{
new object[] {0, value1},
new object[] {1, value2},
new object[] {2, value3}
};
ThreadPool.QueueUserWorkItem(MySetValue, states[0]);
ThreadPool.QueueUserWorkItem(MySetValue, states[1]);
ThreadPool.QueueUserWorkItem(MySetValue, states[2]);
Thread.Sleep(0);
Console.WriteLine("press enter to continue");
Console.ReadLine();
// print the result
Console.WriteLine("result:");
for (int i = 0; i < arr.Length; i++)
{
Console.WriteLine("arr[{0}] = {1}", i, arr[i]);
}
// quit
Console.WriteLine("press enter to quit");
Console.ReadLine();
}
// callback
private static void MySetValue(object state)
{
var args = (object[]) state;
var index = (int)args[0];
var value = args[1];
arr[index] = value; // THREAD-SAFE ??
}
}
}
Come è possibile notare, ogni thread imposta un elemento diverso e univoco nell'array statico. Ho guardato in profondità nel codice usando reflector (e ho esaminato mscorlib.pdb). Alla fine c'è una chiamata a:
[MethodImplAttribute(MethodImplOptions.InternalCall)]
private unsafe extern static void InternalSetValue(void * target, Object value);
Quale non è documentato. Date un'occhiata alla documentazione di MSDN a System.Array
in generale, e a SetValue(object, int)
in particolare .. Niente su thread-safety (o forse mi manca qualcosa).
Come è espresso dalla risposta di Jon Skeet ad un similar question:
Credo che se ogni filo solo impianti su una parte separata della matrice, tutto sarà bene
I Sto cercando di ottenere una risposta definitiva a GetValue(int)
e SetValue(object, int)
per quanto riguarda questo problema. Qualcuno ha un link alla documentazione e/o una migliore comprensione di InternalSetValue
?
Una buona lettura su cosa "thread-safe" in realtà significa da Eric Lippert: http://blogs.msdn.com/ericlippert/archive/2009/10/19/what-is-this-thing-you-call -thread-safe.aspx –
Nell'esempio non verrà chiamato il metodo SetValue, verrà invece emesso dal compilatore un opcode Stelem e non un opcode di chiamata. –