| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 782 人关注过本帖
标题:[求助]C#.net 2005 中的多线程
只看楼主 加入收藏
tanghuawei
Rank: 4
来 自:美丽的湖南
等 级:业余侠客
威 望:3
帖 子:531
专家分:220
注 册:2006-3-16
结帖率:100%
收藏
 问题点数:0 回复次数:6 
[求助]C#.net 2005 中的多线程
各位兄弟,哪位可以提供小弟一个在.net 2005平台下写的多线程程序,给个源码,谢谢!
(做一个简单的可以控制线程的不同状态的:比如,点开始按纽,线程启动,点暂停按纽,线程挂起(或销毁))
搜索更多相关主题的帖子: 线程 
2006-09-04 16:10
tanghuawei
Rank: 4
来 自:美丽的湖南
等 级:业余侠客
威 望:3
帖 子:531
专家分:220
注 册:2006-3-16
收藏
得分:0 
怎么都没一个人鸟我啊?

汽车尾气检测网络系统QQ:357766186__MSN:MSNTHW19850316@
2006-09-06 09:39
CrazyWeed0907
Rank: 2
等 级:新手上路
威 望:5
帖 子:1385
专家分:0
注 册:2006-5-30
收藏
得分:0 

你到msdn上找吧,

[此贴子已经被作者于2006-9-6 10:03:13编辑过]


“十步杀一人,千里不留行。事了拂衣去,深藏身与名。”
2006-09-06 09:52
tanghuawei
Rank: 4
来 自:美丽的湖南
等 级:业余侠客
威 望:3
帖 子:531
专家分:220
注 册:2006-3-16
收藏
得分:0 

我找了。不怎么明白,虽然这线程用得少,但是对我很有用出,请各位大哥帮忙啊!


汽车尾气检测网络系统QQ:357766186__MSN:MSNTHW19850316@
2006-09-06 10:55
jingzhao22visa
Rank: 1
等 级:新手上路
威 望:1
帖 子:343
专家分:0
注 册:2006-8-10
收藏
得分:0 
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Threading;
using System.Collections;

namespace @try
{
public partial class Form1 : Form
{
ArrayList al = new ArrayList();

public Form1()
{
InitializeComponent();
}

private void button1_Click(object sender, EventArgs e)
{
newThread nt = new newThread(DateTime.Now);
listBox1.Items.Add(nt.dtback());
al.Add(nt);
count++;
}

private void listBox1_SelectedIndexChanged(object sender, EventArgs e)
{

}

private void button2_Click(object sender, EventArgs e)
{
int i = 0;
string s="现在已经启动线程"+count+"个";
MessageBox.Show(s);
foreach (newThread nT in al)
{
MessageBox.Show(nT.dtback().ToString());
//nT.Threadback().Abort();
MessageBox.Show(nT.Chck.ThreadState.ToString());
if (i == 0)
{
nT.Chck.Abort();
MessageBox.Show("销毁");
}
MessageBox.Show(nT.Chck.ThreadState.ToString());
i++;
}
}
}

public class newThread
{
private DateTime dt;
private Thread chck;

public DateTime dtback()
{
return dt;
}

public ThreadState stateback()
{
return this.chck.ThreadState;
}

public Thread Chck
{
set { chck = value; }
get { return chck ; }
}

public newThread(DateTime t)
{
dt = t;
chck = new Thread(new ThreadStart(Check));
chck.Start();
}

public void Check()
{
MessageBox.Show("线程创建时间为:"+this.dt);
Thread.Sleep(10000000);
}
}
}

form1.cs 代码


2006-09-06 14:13
jingzhao22visa
Rank: 1
等 级:新手上路
威 望:1
帖 子:343
专家分:0
注 册:2006-8-10
收藏
得分:0 
namespace @try
{
partial class Form1
{
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.IContainer components = null;

/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}

#region Windows 窗体设计器生成的代码

/// <summary>
/// 设计器支持所需的方法 - 不要
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.button1 = new System.Windows.Forms.Button();
this.button2 = new System.Windows.Forms.Button();
this.listBox1 = new System.Windows.Forms.ListBox();
this.SuspendLayout();
//
// button1
//
this.button1.Location = new System.Drawing.Point(62, 209);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(75, 23);
this.button1.TabIndex = 0;
this.button1.Text = "init";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// button2
//
this.button2.Location = new System.Drawing.Point(178, 209);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(75, 23);
this.button2.TabIndex = 1;
this.button2.Text = "end";
this.button2.UseVisualStyleBackColor = true;
this.button2.Click += new System.EventHandler(this.button2_Click);
//
// listBox1
//
this.listBox1.FormattingEnabled = true;
this.listBox1.ItemHeight = 12;
this.listBox1.Location = new System.Drawing.Point(62, 12);
this.listBox1.Name = "listBox1";
this.listBox1.Size = new System.Drawing.Size(191, 172);
this.listBox1.TabIndex = 2;
this.listBox1.SelectedIndexChanged += new System.EventHandler(this.listBox1_SelectedIndexChanged);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(552, 266);
this.Controls.Add(this.listBox1);
this.Controls.Add(this.button2);
this.Controls.Add(this.button1);
this.Name = "Form1";
this.Text = "Form1";
this.ResumeLayout(false);

}

#endregion

private System.Windows.Forms.Button button1;
private System.Windows.Forms.Button button2;
private System.Windows.Forms.ListBox listBox1;

private int count=0;


}
}


Designer.cs 代码。

我自己写的,创建和销毁thread.
仅供参考。

2006-09-06 14:15
tanghuawei
Rank: 4
来 自:美丽的湖南
等 级:业余侠客
威 望:3
帖 子:531
专家分:220
注 册:2006-3-16
收藏
得分:0 

不错,你在看看这两段代码:
http://blog.csdn.net/Knight94/archive/2006/08/24/1111267.aspx
http://blog.csdn.net/Knight94/archive/2006/08/18/1094078.aspx
我不怎么明白,看看你能否看得明白,给我解释下好吗?谢谢!


汽车尾气检测网络系统QQ:357766186__MSN:MSNTHW19850316@
2006-09-06 14:26
快速回复:[求助]C#.net 2005 中的多线程
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.023229 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved