所以我有这些变量
List<string> files, images = new List<string>();
string rootStr;
这个线程函数
private static int[] thread_search(string root,List<string> files, List<string> images)
但是当我尝试启动线程时:
trd = new Thread(new ThreadStart(this.thread_search(rootStr,files,images)));
我收到此错误:
错误1成员'UnusedImageRemover.Form1.thread_search(字符串, System.Collections.Generic.List, 无法访问System.Collections.Generic.List)' 实例参考;使用类型名称限定它 而是E:\ Other \ Projects \ UnusedImageRemover \ UnusedImageRemover \ Form1.cs 149 46 UnusedImageRemover
你能告诉我我做错了吗?
答案 0 :(得分:7)
你有一个静态方法,这意味着它不属于一个实例。 this
指的是当前实例,但由于它是静态的,因此没有意义。
只需删除this.
即可,您应该感觉良好。
修改强>
删除this.
会让您遇到异常。您应该将void
委托传递给ThreadStart
构造函数,并且过早地调用该方法并传入结果(int[]
)。您可以传入lambda,例如:
static void Main(string[] args) {
List<string> files = new List<string>(), images = new List<string>();
string rootStr = "";
var trd = new Thread(new ThreadStart(() => thread_search(rootStr, files, images)));
trd.Start();
}
private static int[] thread_search(string root, List<string> files, List<string> images {
return new[] { 1, 2, 3 };
}
现在线程有一个代表你的搜索功能,关闭参数 - 如果你不熟悉它们,你会想要阅读线程和闭包。