自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(5)
  • 收藏
  • 关注

原创 另一种方法是使用锁来同步访问对象

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 257

原创 使用锁来同步访问对象

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 338

原创 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 4268

原创 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 428

原创 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 754

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除