基本上我有一个带有按钮的表单,当按下按钮时,它会创建一个运行线程的类的实例。当线程完成时,它会自动调用 Thread.Abort()。
我目前拥有的代码归结为:
按钮:
private void Buttonclick(object sender, EventArgs e)
{
MyClass c = new MyClass()
c.Do_your_thing();
}
班级:
public class MyClass
{
Thread t;
public void Do_your_thing()
{
t = new Thread(Running_code);
t.Start();
}
private void Running_code()
{
//Perform code here
t.Abort();
}
}
当我单击一次按钮时,一切正常。但是当我再次按下按钮时,什么也没有发生。
当我不使用 t.Abort() 时,一切正常。但是不使用 t.Abort() 会导致内存泄漏并且程序无法正常关闭(线程永远不会关闭,因此进程将保持活动状态)。
谁能解释我发生了什么事?我该如何解决?
编辑:根据要求,我发布了一些实际代码
public class MyClass
{
public void Test()
{
t = new Thread(() =>
{
wb.DocumentCompleted += get_part;
wb.Navigate("http://www.google.com");
Application.Run();
});
t.SetApartmentState(ApartmentState.STA);
t.Start();
}
public void get_part(object sender, WebBrowserDocumentCompletedEventArgs e)
{
var br = sender as WebBrowser;
string url = e.Url.ToString();
//Here is some code that compares the url to surten predefined url. When there is a match, it should run some code and then go to a new url
if(url == string_final_url)
{
//Finally at the url I want, open it in a new Internet Explorer Window
Process proc = Process.Start("IExplore.exe", url);
}
}
}
这是一个小的网络爬虫程序的一小部分。它导航到需要一些登录信息的网页。当我到达我真正想要的页面时,他应该在新的 Internet Explorer 中打开它。
当我调用此代码并关闭表单时,它仍然在进程树中可见。而且当我多次单击该按钮时,使用的内存不断增加,我怀疑这是某种内存泄漏。