search
HomeBackend DevelopmentC#.Net TutorialC# asynchronous method execution code

using System.Collections.Generic;  
using System.Linq;  
using System.Text;  
using System.Threading;  
using System.Runtime.Remoting.Messaging;  
    
namespace ConsoleApplication1  
{  
    public delegate int AddHandler(int a, int b);  
    public class AddMethod  
    {  
        public static int Add(int a, int b)  
        {  
            Console.WriteLine("开始计算:" + a + "+" + b);  
            Thread.Sleep(3000); //模拟该方法运行三秒  
            Console.WriteLine("计算完成!");  
            return a + b;  
        }  
    }  
        
            
    //**************同步调用***********  
    //委托的Invoke方法用来进行同步调用。同步调用也可以叫阻塞调用,它将阻塞当前线程,然后执行调用,调用完毕后再继续向下进行。  
    
    //**************异步调用***********  
    //异步调用不阻塞线程,而是把调用塞到线程池中,程序主线程或UI线程可以继续执行。  
    //委托的异步调用通过BeginInvoke和EndInvoke来实现。  
    
    //**************异步回调***********  
    //用回调函数,当调用结束时会自动调用回调函数,解决了为等待调用结果,而让线程依旧被阻塞的局面。  
    
    //注意: BeginInvoke和EndInvoke必须成对调用.即使不需要返回值,但EndInvoke还是必须调用,否则可能会造成内存泄漏。  
    class Program  
    {  
        static void Main(string[] args)  
        {  
            Console.WriteLine("===== 同步调用 SyncInvokeTest =====");  
            AddHandler handler = new AddHandler(AddMethod.Add);  
            int result=handler.Invoke(1,2);  
            Console.WriteLine("继续做别的事情。。。");  
    
            Console.WriteLine(result);  
            Console.ReadKey();  
    
    
            Console.WriteLine("===== 异步调用 AsyncInvokeTest =====");  
            AddHandler handler1 = new AddHandler(AddMethod.Add);  
            IAsyncResult result1=handler1.BeginInvoke(1,2,null,null);  
            Console.WriteLine("继续做别的事情。。。");  
    
            //异步操作返回  
            Console.WriteLine(handler1.EndInvoke(result1));  
            Console.ReadKey();  
    
            Console.WriteLine("===== 异步回调 AsyncInvokeTest =====");  
            AddHandler handler2 = new AddHandler(AddMethod.Add);  
            IAsyncResult result2 = handler2.BeginInvoke(1, 2, new AsyncCallback(Callback), null);  
            Console.WriteLine("继续做别的事情。。。");  
            Console.ReadKey();  
    
    
            //异步委托,也可以参考如下写法:  
            //Action<object> action=(obj)=>method(obj);  
            //action.BeginInvoke(obj,ar=>action.EndInvoke(ar),null);  
            //简简单单两句话就可以完成一部操作。  
        }  
        static void Callback(IAsyncResult result)  
        {  
            AddHandler handler = (AddHandler)((AsyncResult)result).AsyncDelegate;  
            Console.WriteLine(handler.EndInvoke(result));  
        }  
    }  
}

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
What are the alternatives to NULL in C languageWhat are the alternatives to NULL in C languageMar 03, 2025 pm 05:37 PM

This article explores the challenges of NULL pointer dereferences in C. It argues that the problem isn't NULL itself, but its misuse. The article details best practices for preventing dereferences, including pre-dereference checks, pointer initiali

Which C language compiler is better?Which C language compiler is better?Mar 03, 2025 pm 05:39 PM

This article guides beginners on choosing a C compiler. It argues that GCC, due to its ease of use, wide availability, and extensive resources, is best for beginners. However, it also compares GCC, Clang, MSVC, and TCC, highlighting their differenc

How to add next-level C compilerHow to add next-level C compilerMar 03, 2025 pm 05:44 PM

This article explains how to create newline characters in C using the \n escape sequence within printf and puts functions. It details the functionality and provides code examples demonstrating its use for line breaks in output.

Is NULL still important in modern programming in C language?Is NULL still important in modern programming in C language?Mar 03, 2025 pm 05:35 PM

This article emphasizes the continued importance of NULL in modern C programming. Despite advancements, NULL remains crucial for explicit pointer management, preventing segmentation faults by marking the absence of a valid memory address. Best prac

What are the web versions of C language compilers?What are the web versions of C language compilers?Mar 03, 2025 pm 05:42 PM

This article reviews online C compilers for beginners, focusing on ease of use and debugging capabilities. OnlineGDB and Repl.it are highlighted for their user-friendly interfaces and helpful debugging tools. Other options like Programiz and Compil

C language online programming website C language compiler official website summaryC language online programming website C language compiler official website summaryMar 03, 2025 pm 05:41 PM

This article compares online C programming platforms, highlighting differences in features like debugging tools, IDE functionality, standard compliance, and memory/execution limits. It argues that the "best" platform depends on user needs,

Method of copying code by C language compilerMethod of copying code by C language compilerMar 03, 2025 pm 05:43 PM

This article discusses efficient code copying in C IDEs. It emphasizes that copying is an IDE function, not a compiler feature, and details strategies for improved efficiency, including using IDE selection tools, code folding, search/replace, templa

How to solve the problem of not popping up the output window by the C language compilerHow to solve the problem of not popping up the output window by the C language compilerMar 03, 2025 pm 05:40 PM

This article troubleshoots missing output windows in C program compilation. It examines causes like failing to run the executable, program errors, incorrect compiler settings, background processes, and rapid program termination. Solutions involve ch

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version