Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
What is Delegate and what is it used for ?
What is Delegate and what is it used for ?
✍: Guest
Delegate is kinda like a pointer to a function in C++ or like an event handler in Java
You can use it to “multicast†which means running multiple functions in different instances of object already created.
This is useful when you want your objects to “register†to an event raised by another object.
The way it works is the object you are registered to listen to recieves the delegate of the function it is supposed to run in your object, the delegate is then run from it. (if you switch the word delegate for pointer, this would be much simpler)
2013-12-20, 2183👍, 0💬
Popular Posts:
How To Create an Add-to-NewsGator Button on Your Website? - RSS FAQs - Adding Your Feeds to RSS News...
WHat will be the result of the following code? #define TRUE 0 // some code while (TRUE) { // some co...
Rachel opened her math book and found that the sum of the facing pages was 245. What pages did she o...
What will be printed as the result of the operation below: main() { char *ptr = " Cisco Systems"; *p...
Write out a function that prints out all the permutations of a string. For example, abc would give y...