急c# 多线程 访问一个变量
发布网友
发布时间:2022-05-19 18:25
我来回答
共2个回答
热心网友
时间:2023-10-15 23:47
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading;
namespace threadstop
{
class Program
{
static int methodNumber = 1000;
public IList<string> list = new List<string>();
static ManualResetEvent manu = new ManualResetEvent(false);
static void Main(string[] args)
{
Program p = new Program();
p.run();
}
public void run()
{
for (int i = 0; i < 1000; i++)
{
ThreadPool.QueueUserWorkItem(new WaitCallback(TestMethod), i);
}
manu.WaitOne();
Console.WriteLine("finish");
Console.WriteLine(this.list.Count);
Console.Read();
}
public void TestMethod(object state)
{
try
{
for (int i = 0; i < 10000; i++)
{
lock (list)
{
list.Add(i.ToString());
}
}
}
finally
{
if (Interlocked.Decrement(ref methodNumber) == 0)
manu.Set();
}
}
}
//public class Program
//{
// public IList<string> list = new List<string>();
// public void Method()
// {
// for (int i = 0; i < 1000; i++)
// {
// lock (list)
// {
// list.Add(i.ToString());
// }
// }
// }
// public void dosomething()
// {
// for (int i = 0; i < 100; i++)
// {
// Thread thread = new Thread(Method);
// thread.Start();
// }
// }
// static void Main(string[] args)
// {
// Program p= new Program();
// p.dosomething();
// Console.WriteLine(p.list.Count);
// Console.Read();
// }
//}
}
-----------------------------关键代码---------------------------------
lock (list)
{
list.Add(i.ToString());
}
热心网友
时间:2023-10-15 23:48
一个变量或者一个方法在同一时间只能允许一个方法访问,其他线程好像都是自动排队访问的,无需多余编程