溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

委托三------------多播委托與匿名方法

發(fā)布時(shí)間:2020-08-06 22:42:28 來源:網(wǎng)絡(luò) 閱讀:850 作者:1473348968 欄目:編程語言

============================================多播委托

-------------------------------------主程序

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication3
{
    class Program
    {
        static void Main(string[] args)
        {
            //多播委托只能使用無返回值的委托
            //當(dāng)str1執(zhí)行失敗后會(huì)阻止后面的方法的執(zhí)行
            Action<string> a = str1;
            a += str2;
            a += str2;
            a += str2;
            a += str2;
            StrAndName(a, "文聘");
            Console.ReadKey();
        }

        static void str1(string name)
        {
            Console.WriteLine("看我{0}的厲害", name);
        }
        static void str2(string name)
        {
            Console.WriteLine("受死吧!{0}", name);
        }
        static void StrAndName(Action<string> action, string name)
        {
            action(name);
        }
    }
}

 

============================================匿名方法

-------------------------------------主程序

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication4
{
    class Program
    {
        static void Main(string[] args)
        {
            string s = "你好!";
            //不能使用break,goto,continue,ref,out
            Action<string> a = delegate(string str)
            {
                Console.WriteLine(s + str);
                Console.ReadKey();
            };
            a("我叫張飛");

        }
    }
}

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI