• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

C#匿名参数(转载too)

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

匿名方法是在初始化委托时内联声明的方法。

例如下面这两个例子:

不使用匿名方法的委托:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication7
{
    class Program
    {
        public static int add(int x)
        {
            return x + 20;
        }
        delegate int otherdel(int param);
        public static void Main()
        {
            otherdel del = add;

            Console.WriteLine("{0}", del(20));
            Console.WriteLine("{0}", del(10));
        }
    } 
}

 

使用匿名方法的委托:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication7
{
    class Program
    {
        delegate int otherdel(int param);
        public static void Main()
        {
            otherdel del = delegate(int x)
            {
                return x + 20;
            };

            Console.WriteLine("{0}", del(20));
            Console.WriteLine("{0}", del(10));
        }
    } 
}

 

两种结果是一样的。

使用匿名方法

1)声明委托变量时候作为初始化表达式。

2)组合委托时在赋值语句的右边。

3)为委托增加事件时在赋值语句的右边。

匿名方法语法

delegate (parameters ){implementationcode};

关键字  参数        语句块

匿名方法不会声明返回值类型。但是匿名方法返回值类型必须和委托返回值一样。

 

参数:参数数量,类型和修饰符必须和委托一样。

但是我们可以使圆括号为空,或省略圆括号来简化匿名方法的参数列表。但是仅在下面两项都为真的情况下才可以这么做。

1,委托的参数列表不包含任何out参数的委托。

2,匿名方法不使用任何参数。

例如下面:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication7
{
    class Program
    {
        delegate int otherdel(int param);
        public static void Main()
        {
            otherdel del = delegate
            {
                cleanup();
                printMessage();
            };          
        }
    } 
}

 

 params参数:

如果委托参数包含params参数,那么params关键字就会被匿名方法的参数列表忽略。如下:

delegate int otherdel(int x,params int y);
        otherdel del = delegate(int x,int y)
        {
            -------------
        };

 

匿名方法是在初始化委托时内联声明的方法。

例如下面这两个例子:

不使用匿名方法的委托:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication7
{
    class Program
    {
        public static int add(int x)
        {
            return x + 20;
        }
        delegate int otherdel(int param);
        public static void Main()
        {
            otherdel del = add;

            Console.WriteLine("{0}", del(20));
            Console.WriteLine("{0}", del(10));
        }
    } 
}

 

使用匿名方法的委托:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication7
{
    class Program
    {
        delegate int otherdel(int param);
        public static void Main()
        {
            otherdel del = delegate(int x)
            {
                return x + 20;
            };

            Console.WriteLine("{0}", del(20));
            Console.WriteLine("{0}", del(10));
        }
    } 
}

 

两种结果是一样的。

使用匿名方法

1)声明委托变量时候作为初始化表达式。

2)组合委托时在赋值语句的右边。

3)为委托增加事件时在赋值语句的右边。

匿名方法语法

delegate (parameters ){implementationcode};

关键字  参数        语句块

匿名方法不会声明返回值类型。但是匿名方法返回值类型必须和委托返回值一样。

 

参数:参数数量,类型和修饰符必须和委托一样。

但是我们可以使圆括号为空,或省略圆括号来简化匿名方法的参数列表。但是仅在下面两项都为真的情况下才可以这么做。

1,委托的参数列表不包含任何out参数的委托。

2,匿名方法不使用任何参数。

例如下面:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication7
{
    class Program
    {
        delegate int otherdel(int param);
        public static void Main()
        {
            otherdel del = delegate
            {
                cleanup();
                printMessage();
            };          
        }
    } 
}

 

 params参数:

如果委托参数包含params参数,那么params关键字就会被匿名方法的参数列表忽略。如下:

delegate int otherdel(int x,params int y);
        otherdel del = delegate(int x,int y)
        {
            -------------
        };

 


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
c语言输出字符串汉字发布时间:2022-07-14
下一篇:
c#xaml(1)发布时间:2022-07-14
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap