new ThreadStart中的方法如果有参数,该怎么写
楼主,你要是想带参数可以用这个
ParameterizedThreadStart pts = new ParameterizedThreadStart(ReceiveDate);
Thread threadReceive = new Thread(pts);
User user = new User(newClient);
threadReceive.Start(user);
看第一行,我这段代码的ReceiveDate方法就是有一个参数的,使用ParameterizedThreadStart这个创建线程可以带一个参数
C#或C++使用信号量机制,编写一个含有两个进程,互斥更改变量n的小程序
卧槽这怎么做啊,C#里面对于共享内存的支持本来就有点蹩脚
两个进程更改同一个变量是想要闹怎样……
先弄个线程的,实在不行要进程了之后用C++给你写个
using?System;
using?System.Threading;
class?Program
{
????static?int?t;
????static?void?Main(string[]?args)
????{
????????Semaphore?semaphore?=?new?Semaphore(1,?1);
????????ParameterizedThreadStart?ts?=?new?ParameterizedThreadStart(x?=>
????????{
????????????Semaphore?s?=?(Semaphore)x;
????????????for?(int?i?=?0;?i?50000;?++i)
????????????{
????????????????s.WaitOne();
????????????????++t;
????????????????s.Release();
????????????}
????????});
????????Thread?t1?=?new?Thread(ts);
????????Thread?t2?=?new?Thread(ts);
????????t?=?0;
????????t1.Start(semaphore);
????????t2.Start(semaphore);
????????t1.Join();
????????t2.Join();
????????Console.WriteLine(t);
????}
}
C# 多线程,ThreadStart()里面的方法带了参数就提示错误?
线程操作主要用到Thread类,他是定义在System.Threading.dll下。
使用时需要添加这一个引用。
该类提供给我们四个重载的构造函数(以下引自msdn)。
Thread (ParameterizedThreadStart) 初始化 Thread 类的新实例,指定允许对象在线程启动时传递给线程的委托。
Thread (ThreadStart) 初始化 Thread 类的新实例。
由 .NET Compact Framework 支持。
Thread (ParameterizedThreadStart, Int32) 初始化 Thread 类的新实例,指定允许对象在线程启动时传递给线程的委托,并指定线程的最大堆栈大小。
Thread (ThreadStart, Int32) 初始化 Thread 类的新实例,指定线程的最大堆栈大小。
由 .NET Compact Framework 支持。
我们如果定义不带参数的线程,可以用ThreadStart,带一个参数的用ParameterizedThreadStart。
带多个参数的用另外的方法,下面逐一讲述。
一、不带参数的
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading;
namespace AAAAAA
{
class AAA
{
public static void Main()
{
Thread t = new Thread(new ThreadStart(A));
t.Start();
Console.Read();
}
private static void A()
{
Console.WriteLine("Method A!");
}
}
}
结果显示Method A!
二、带一个参数的
由于ParameterizedThreadStart要求参数类型必须为object,所以定义的方法B形参类型必须为object。
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading;
namespace AAAAAA
{
class AAA
{
public static void Main()
{
Thread t = new Thread(new ParameterizedThreadStart(B));
t.Start("B");
Console.Read();
}
private static void B(object obj)
{
Console.WriteLine("Method {0}!",obj.ToString ());
}
}
}
结果显示Method B!
三、带多个参数的
由于Thread默认只提供了这两种构造函数,如果需要传递多个参数,我们可以自己将参数作为类的属性。
定义类的对象时候实例化这个属性,然后进行操作。
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading;
namespace AAAAAA
{
class AAA
{
public static void Main()
{
My m = new My();
m.x = 2;
m.y = 3;
Thread t = new Thread(new ThreadStart(m.C));
t.Start();
Console.Read();
}
}
class My
{
public int x, y;
public void C()
{
Console.WriteLine("x={0},y={1}", this.x, this.y);
}
}
}
结果显示x=2,y=3
四、利用结构体给参数传值。
定义公用的public struct,里面可以定义自己需要的参数,然后在需要添加线程的时候,可以定义结构体的实例。
//结构体
struct RowCol
{
public int row;
public int col;
};
//定义方法
public void Output(Object rc)
{
RowCol rowCol = (RowCol)rc;
for (int i = 0; i < rowCol.row; i++)
{
for (int j = 0; j < rowCol.col; j++)
Console.Write("{0} ", _char);
Console.Write("
");
}
}
vb.net怎么无线循环编
一般多开线程写无限循环行为。
//定义线程
Dim?th?As?New?Threading.Thread(New?Threading.ParameterizedThreadStart(AddressOf?test))
th.Start("aaa")//开始线程,可以传参//线程执行函数
Public?Sub?test(ob?As?Object)
???While?True
?????Console.WriteLine("线程正在运行中"?&?ob)
?????Threading.Thread.Sleep(1000)
???End?While
End?Sub
C#关于线程的问题
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;//导入使用线程管理的命名空间
namespace MyThread
{
class Program
{
private static int newTask(int ms)//定义方法(这是普通的定义,没什么特别,注意参数与委托参数一致就行)
{
Console.WriteLine("任务开始");
Thread.Sleep(ms);//当前线程睡眠
Random random = new Random();
int n = random.Next(10000);
Console.WriteLine("任务完成");
return n;//当程睡眠ms毫秒后结束返回
}
private delegate int NewTaskDelegate(int ms);//定义委托,用于执行线程方法
static void Main(string[] args)
{
NewTaskDelegate task = newTask;//新建委托对象
IAsyncResult asyncResult = task.BeginInvoke(2000, null, null);//BeginInvoke方法.NET FrameWorks开辟并在多线程管理机制里执行多线程
// EndInvoke方法将被阻塞2秒
int result = task.EndInvoke(asyncResult);//在执行方法后获得线程返回的结果
Console.WriteLine(result);
Console.Read();
}
}
}
//以上主要理解BeginInvoke与EndInvoke及线程结果asyncResult
//与之比较的还有Invoke无返回值
//更深一点的还有线程方法回调
//看楼主理解吧.....不赘述了...