8.10 Delegates

王朝other·作者佚名  2006-01-10
窄屏简体版  字體: |||超大  

8.10 Delegates

Delegates enable scenarios that some other languages have addressed with

function pointers. However,

unlike function pointers, delegates are object-oriented and type-safe.

A delegate declaration defines a class that is derived from the class

System.Delegate. A delegate instance

encapsulates one or more methods, each of which is referred to as a

callable entity. For instance methods, a

callable entity consists of an instance and a method on that instance. For

static methods, a callable entity

consists of just a method. Given a delegate instance and an appropriate set

of arguments, one can invoke all

of that delegate instance.s methods with that set of arguments.

C# LANGUAGE SPECIFICATION

44

An interesting and useful property of a delegate instance is that it does

not know or care about the classes of

the methods it encapsulates; all that matters is that those methods be

compatible (§22.1) with the delegate.s

type. This makes delegates perfectly suited for .anonymous. invocation.

This is a powerful capability.

There are three steps in defining and using delegates: declaration,

instantiation, and invocation. Delegates

are declared using delegate declaration syntax. The example

delegate void SimpleDelegate();

declares a delegate named SimpleDelegate that takes no arguments and

returns no result.

The example

class Test

{

static void F() {

System.Console.WriteLine("Test.F");

}

static void Main() {

SimpleDelegate d = new SimpleDelegate(F);

d();

}

}

creates a SimpleDelegate instance and then immediately calls it.

There is not much point in instantiating a delegate for a method and then

immediately calling that method

via the delegate, as it would be simpler to call the method directly.

Delegates really show their usefulness

when their anonymity is used. The example

void MultiCall(SimpleDelegate d, int count) {

for (int i = 0; i < count; i++) {

d();

}

}

shows a MultiCall method that repeatedly calls a SimpleDelegate. The

MultiCall method doesn.t

know or care about the type of the target method for the SimpleDelegate,

what accessibility that method

has, or whether or not that method is static. All that matters is that the

target method is compatible (§22.1)

with SimpleDelegate.

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
 
 
© 2005- 王朝網路 版權所有 導航