In c#
class ParallelTest
{
public static void Main()
{
System.Threading.Tasks.Parallel.ForEach(new []{1,2,3,4,5,6,7,8},
x => { System.Console.WriteLine(x); }
);
}
}
结果
4
5
6
7
8
2
1
3
但是,在IronRuby(1.1.3)中。
System::Threading::Tasks::Parallel::ForEach([1,2,3,4,5,6,7,8], Proc.new {|x|
puts x;
})
结果
1734
5
6
8
是什么导致了这个问题?
这只是一个bug吗?
似乎IronRuby的puts
不是线程安全的。如果您在IR中使用Console.WriteLine()
,它可以正常工作:
System::Threading::Tasks::Parallel::ForEach([1,2,3,4,5,6,7,8], Proc.new {|x|
System::Console::WriteLine(x)
})