C#语言
文章平均质量分 62
zxh_123
这个作者很懒,什么都没留下…
展开
-
C# 终止线程
using System;using System.Threading;// Stopping a thread class MyThread{ public Thread thrd; public MyThread(string name) { thrd = new Thread(this.run);原创 2010-02-28 19:04:00 · 768 阅读 · 0 评论 -
C#语言 创建和启动线程
using System;using System.Threading;namespace ConsoleApplication3{ // Create a thread(线程) of execution(执行). class MyThread { public int count; string thrdName; publ原创 2010-02-28 19:06:00 · 437 阅读 · 0 评论 -
C# 用IsAlive来确定线程结束时间
using System;using System.Threading; // Use IsAlive to wait for threads to end.(用IsAlive来确定线程结束时间). class MyThread { public int count; public Thread thrd; public原创 2010-02-28 19:16:00 · 4280 阅读 · 0 评论 -
使用锁来同步访问对象
using System;using System.Threading;namespace ConsoleApplication1{ // Use lock to synchronize access to an object(使用锁来同步访问对象) class SumArray { int sum; public int sumIt(原创 2010-02-28 19:21:00 · 344 阅读 · 0 评论 -
另一种方法是使用锁来同步访问对象
using System;using System.Threading;namespace ConsoleApplication1{ // Another way to use lock to synchronize access to an object(另一种方法是使用锁来同步访问对象) class SumArray { int sum;原创 2010-02-28 19:22:00 · 267 阅读 · 0 评论