委托、 Lambda表达式和事件——委托
- 简单示例
/*
* 由SharpDevelop创建。
* 用户: David Huang
* 日期: 2015/7/27
* 时间: 10:22
*/
using System; namespace Delegate_Book
{
class Program
{
delegate string GetAString(); struct Currency
{
public uint Dollars;
public ushort Cents; public Currency(uint Dollars,ushort Cents)
{
this.Dollars=Dollars;
this.Cents=Cents;
} public override string ToString()
{
return string.Format("${0}.{1,2:00}",Dollars,Cents);
} public static string GetCurrencyUnit()
{
return "Dollar";
}
} public static void Main(string[] args)
{
const int x = ;
//GetAString getAString =new GetAString(x.ToString);
GetAString getAString=x.ToString;
Console.WriteLine(getAString()); Currency currency=new Currency(,);
getAString=currency.ToString;
Console.WriteLine(getAString()); Console.WriteLine(new GetAString(new Currency(,).ToString)()); getAString=Currency.GetCurrencyUnit;
Console.WriteLine(getAString()); Console.Write("Press any key to continue . . . ");
Console.ReadKey(true);
}
}
} - Action<T>和Func<T>委 托
/*
* 由SharpDevelop创建。
* 用户: David Huang
* 日期: 2015/7/28
* 时间: 14:31
*/
using System; namespace MathOperations
{
static class MathOperations
{
public static double MutiplyByTwo(double value)
{
return *value;
} public static double Square(double value)
{
return value*value;
}
} delegate double DoubleOp(double x); class Program
{ public static void Main(string[] args)
{
DoubleOp[] doubleOps={
MathOperations.MutiplyByTwo,
MathOperations.Square
}; foreach (var op in doubleOps) {
DoTheMath(op,2.5);
DoTheMath(op,3.5);
} Func<double,double>[] doubleFuncs={
MathOperations.MutiplyByTwo,
MathOperations.Square
}; foreach (var func in doubleFuncs) {
DoTheFunc(func,2.5);
DoTheFunc(func,3.5);
} Console.Write("Press any key to continue . . . ");
Console.ReadKey(true);
} static void DoTheMath(DoubleOp operation,double value)
{
double result=operation(value);
Console.WriteLine(string.Format("vlaue is {0},result is {1}",value,result));
} static void DoTheFunc(Func<double,double> func,double value)
{
var result = func(value);
Console.WriteLine(string.Format("value is {0},result is {1}",value,result));
} }
} - 冒泡排序示例
/*
* 由SharpDevelop创建。
* 用户: David Huang
* 日期: 2015/7/29
* 时间: 15:34
*/
using System;
using System.Linq;
using System.Collections.Generic; namespace BubbleSorter
{
class Program
{
public static void Main(string[] args)
{
//int
List<int> array=new List<int> {,,,,};
Sort(array);
Console.WriteLine(array.ConvertAll(i=>i.ToString()).Aggregate((current,next)=>string.Format("{0},{1}",current,next)).TrimEnd(',')); //泛型
List<int> list=new List<int> {,,,,};
Sort(list,IsBiggerThan);
Console.WriteLine(array.ConvertAll(i=>i.ToString()).Aggregate((current,next)=>string.Format("{0},{1}",current,next)).TrimEnd(',')); //泛型
List<Person> personList=new List<Person>{
new Person{Name="Tom",Age=},
new Person{Name="Jack",Age=},
new Person{Name="Penny",Age=},
new Person{Name="Lucy",Age=}
};
Sort(personList,IsOlderThan);
foreach (Person person in personList) {
Console.WriteLine(person);
} Console.Write("Press any key to continue . . . ");
Console.ReadKey(true);
} static bool IsOlderThan(Person p1,Person p2)
{
return p1.Age>p2.Age;
} static bool IsBiggerThan(int a,int b)
{
return a>b;
} static void Sort(IList<int> sortArray)
{
bool swapped=true; do
{
swapped=false; for (int i = ; i < sortArray.Count-; i++) {
if (sortArray[i]>sortArray[i+]) {
int tmp=sortArray[i];
sortArray[i]=sortArray[i+];
sortArray[i+]=tmp;
swapped=true;
}
} }while (swapped);
} static void Sort<T>(IList<T> list,Func<T,T,bool> comparison)
{
bool swapped=true; do{
swapped=false; for (int i = ; i < list.Count-; i++) {
if (comparison(list[i],list[i+])) {
T temp=list[i];
list[i]=list[i+];
list[i+]=temp;
swapped=true;
}
} }while(swapped);
}
} class Person
{
public string Name{get;set;}
public int Age{get;set;} public override string ToString()
{
return string.Format("Name:{0},Age:{1}",Name,Age);
}
}
} - 多播委托
/*
* 由SharpDevelop创建。
* 用户: David Huang
* 日期: 2015/7/30
* 时间: 14:37
*/
using System; namespace 多播
{
public static class MathOperations
{
public static void MutiplyByTwo(double value)
{
Console.WriteLine(string.Format("method: MutiplyByTwo, value: {0}, result: {1}",value,*value));
} public static void Square(double value)
{
Console.WriteLine(string.Format("method: Square, value: {0}, result: {1}",value,value*value));
}
} class Program
{
public static void Main(string[] args)
{
Action<double> mathOperations=MathOperations.MutiplyByTwo;
mathOperations+=MathOperations.Square; DoTheMath(mathOperations,2.5);
DoTheMath(mathOperations,3.5); Console.Write("Press any key to continue . . . ");
Console.ReadKey(true);
} static void DoTheMath(Action<double> action,double value)
{
action(value);
}
}
} - 匿名委托
/*
* 由SharpDevelop创建。
* 用户: David Huang
* 日期: 2015/7/30
* 时间: 16:19
*/
using System; namespace 匿名
{
class Program
{
public static void Main(string[] args)
{
Func<int,int> anonDel=delegate(int i)
{
return i*;
}; Console.WriteLine(anonDel());
// TODO: Implement Functionality Here Console.Write("Press any key to continue . . . ");
Console.ReadKey(true);
}
}
}
委托、 Lambda表达式和事件——委托的更多相关文章
- C#编程 委托 Lambda表达式和事件
委托 如果我们要把方法当做参数来传递的话,就要用到委托.简单来说委托是一个类型,这个类型可以赋值一个方法的引用. 声明委托 在C#中使用一个类分两个阶段,首选定义这个类,告诉编译器这个类由什么字段和方 ...
- C#学习笔记三(委托·lambda表达式和事件,字符串和正则表达式,集合,特殊的集合)
委托和事件的区别 序号 区别 委托 事件 1 是否可以使用=来赋值 是 否 2 是否可以在类外部进行调用 是 否 3 是否是一个类型 是 否,事件修饰的是一个对象 public delegate vo ...
- 委托、Lambda表达式、事件系列07,使用EventHandler委托
谈到事件注册,EventHandler是最常用的. EventHandler是一个委托,接收2个形参.sender是指事件的发起者,e代表事件参数. □ 使用EventHandler实现猜拳游戏 使用 ...
- 委托、Lambda表达式、事件系列06,使用Action实现观察者模式,体验委托和事件的区别
在"实现观察者模式(Observer Pattern)的2种方式"中,曾经通过接口的方式.委托与事件的方式实现过观察者模式.本篇体验使用Action实现此模式,并从中体验委托与事件 ...
- 委托、Lambda表达式、事件系列05,Action委托与闭包
来看使用Action委托的一个实例: static void Main(string[] args) { int i = 0; Action a = () => i++; a(); a(); C ...
- 委托、Lambda表达式、事件系列04,委托链是怎样形成的, 多播委托, 调用委托链方法,委托链异常处理
委托是多播委托,我们可以通过"+="把多个方法赋给委托变量,这样就形成了一个委托链.本篇的话题包括:委托链是怎样形成的,如何调用委托链方法,以及委托链异常处理. □ 调用返回类型为 ...
- 委托、Lambda表达式、事件系列03,从委托到Lamda表达式
在"委托.Lambda表达式.事件系列02,什么时候该用委托"一文中,使用委托让代码简洁了不少. namespace ConsoleApplication2 { internal ...
- 委托、Lambda表达式、事件系列02,什么时候该用委托
假设要找出整型集合中小于5的数. static void Main(string[] args) { IEnumerable<int> source = new List<int&g ...
- 委托、Lambda表达式、事件系列01,委托是什么,委托的基本用法,委托的Method和Target属性
委托是一个类. namespace ConsoleApplication1 { internal delegate void MyDelegate(int val); class Program { ...
随机推荐
- The type java.lang.String cannot be resolved. It is indirectly referenced from required .class files
最近在做J2ME开发项目,配置环境一切OK,但是打开项目时某些文件提示: The type java.lang.String cannot be resolved. It is indirectly ...
- JSON和XML:不可同日而语
[编者按]本文作者 Yegor Bugayenko 是 Teamed.io 公司的联合创始人,在软件质量和工程管理方法领域有深入的研究.本文中,作者通过对比 JSON ,向大家更详细地阐述了 XML ...
- Match & Catch
Codeforces Round #244 (Div. 2) D:http://codeforces.com/contest/427/problem/D 题意:给你两个串,让你找一个最小的串,并且这个 ...
- 谈谈在keil下的代码定位
关于C语言,我们一般都知道对于RAM定位可以用关键字 _at_,但对于程序代码定位往往感到很迷惑, 其实keil中的程序代码定位功能极为强大 Menu: Options for Target 'Tar ...
- Linux Kernel 'perf_event.c'本地权限提升漏洞
漏洞版本: Linux Kernel 3.11-rc4 漏洞描述: Linux Kernel是一款开源的操作系统 Linux Kernel 'perf_event.c'存在一个安全漏洞,允许本地攻击者 ...
- 【转】模拟器上安装googleplay apk
原文网址:http://blog.sina.com.cn/s/blog_9fc2ff230101gv57.html 1.进入到sdk\android-sdk-windows\tools>目录下: ...
- java基础(十二)常用类总结(二)
这里有我之前上课总结的一些知识点以及代码大部分是老师讲的笔记 个人认为是非常好的,,也是比较经典的内容,真诚的希望这些对于那些想学习的人有所帮助! 由于代码是分模块的上传非常的不便.也比较多,讲的也是 ...
- HDU 4720 Naive and Silly Muggles 2013年四川省赛题
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4720 题目大意:给你四个点,用前三个点绘制一个最小的圆,而这三个点必须在圆上或者在圆内,判断最一个点如 ...
- ACM1019_最大公倍数
/*问题说明 一组正整数的最小公倍数(LCM)是最小的正整数约数集合中的所有号码. 例如,5,7和15的最小公倍数是105. 输入 输入将包括多个问题的实例.输入的第一行中,将包含一个整数, 表示问题 ...
- linux mono
linux下.net环境; rpm -ivh http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm &am ...