原谅我的术语,我不是很熟悉System.Threading
,但如果我有类似下面的内容:
private static int _index;
private static List<int> _movieIds = new List<int>();
static void Main(string[] args)
{
// the below call populates the _movieIds list variable with around 130,000 ints
GetListOfMovieIdsFromDatabase();
_index = 0;
Thread myThread = new Thread(DoWork);
myThread.Start();
}
public static void DoWork()
{
// do something with the value of _index (iterate through the _movieIds list) then recursively call DoWork() again
Thread.Sleep(400);
_index++;
DoWork();
}
这是不好的做法吗?我正在迭代int's
在类级别定义为成员的私有静态列表,因此第一次迭代DoWork()
将使用第一个值_index
(为了简单起见,我没有解释),然后是第二次迭代(递归调用)将与第二个值一起使用_index
,依此类推。
我问这个的原因是因为在运行这个应用程序大约 12 小时后我得到了一个堆栈溢出异常,我相信这是因为递归调用。