for (int i = 0; i < n_thread; i++)
{
Thread myThread = new Thread(new ThreadStart(Count(i, n_thread, a, b, c)));
myThread.Start();
Thread.Sleep(1000);
}
这是计数方法
public static void Count(int id, int n_thread, float[][]a, float[][] b, float[][] c)
{
}
发誓 (Count(i, n_thread, a, b, c)
错误:“需要方法名称”
所以:
它发誓是因为 Thread 类的构造函数需要一个委托 ( MSDN ),并且您在那里传递了 Count 方法的执行结果。