多线程的两个常用demo

异步调用的四种方式

 

using  System;
using  System.Threading;

namespace  ThreadDemo
{
    
public class YibuSelf
    
{
        
public delegate void MyDelegate();
        
public static MyDelegate dele;

        
public static void Main()
        
{
            
同步方式
            
            dele 
= new MyDelegate( Test );
    
            
回调方式

            
轮询方式

            
调用End方法

            
WaitHandle

            
// 执行线程中其他内容
            Console.WriteLine("线程的其余部分执行");

            Console.Read();
        }


        
public static void Test()
        
{
            
forint i=0; i<10; i++)
            
{
                Console.Write(
"+");
                Thread.Sleep(
200);
            }

        }


        
public static void MyCallback( IAsyncResult ar )
        
{
            dele.EndInvoke( ar );

            Console.WriteLine();
            Console.WriteLine(
"异步操作结束.");
        }

    }

}

 在多线程环境中保护状态和数据

 

using  System;
using  System.Threading;
using  System.Runtime.Remoting.Contexts;

using  System.Runtime.CompilerServices;

namespace  ThreadDemo
{
    
//[Synchronization]
    public class Synch_Example : ContextBoundObject
    
{
        
static int sCount = 0;    // 静态字段
        int iCount = 0;            // 实例字段

        
// 同一时刻只有一个线程可以执行实例方法

        
事例方法
        
        
静态方法    
    }


    
class Example_Synch
    
{
        
public static void Main()
        
{
            Synch_Example se1 
= new Synch_Example();

            
实例方法线程
            
            Thread.Sleep( 
1000 );

            
静态方法线程

            Console.Read();
        }

    }

}

你可能感兴趣的:(多线程的两个常用demo)