Delegates are references to methods in object-oriented environments, such as the .NET framework or Objective-C. They are analogous to function pointers.
92
votes
5answers
73k views
How do I create delegates in Objective-C?
I know how delegates work, and I know how I can use them.
But how do I create them?
70
votes
9answers
6k views
Wrapping StopWatch timing with a delegate or lambda?
I'm writing code like this, doing a little quick and dirty timing:
var sw = new Stopwatch();
sw.Start();
for (int i = 0; i < 1000; i++)
{
b = DoStuff(s);
}
sw.Stop();
...
69
votes
3answers
13k views
Why are Objective-C delegates usually given the property assign instead of retain?
I'm surfing through the wonderful blog maintained by Scott Stevenson, and I'm trying to understand a fundamental Objective-C concept of assigning delegates the 'assign' property vs 'retain'. Note, the ...
56
votes
3answers
9k views
What's the best way to communicate between view controllers?
Being new to objective-c, cocoa, and iPhone dev in general, I have a strong desire to get the most out of the language and the frameworks.
One of the resources I'm using is Stanford's CS193P class ...
52
votes
8answers
35k views
Uses of Action delegate in C#
I was working with the Action Delegates in C# in the hope of learning more about them and thinking where they might be useful.
Has anybody used the Action Delegate, and if so why? or could you give ...
48
votes
7answers
8k views
Unsubscribe anonymous method in C#
Is it possible to unsubscribe an anonymous method from an event?
If I subscribe to an event like this:
void MyMethod()
{
Console.WriteLine("I did it!");
}
MyEvent += MyMethod;
I can ...
46
votes
21answers
13k views
46
votes
11answers
15k views
Wrap a delegate in an IEqualityComparer
Several Linq.Enumerable functions take an IEqualityComparer<T>. Is there a convenient wrapper class that adapts a delegate(T,T)=>bool to implement IEqualityComparer<T>? It's easy enough ...
42
votes
5answers
18k views
How can I clear event subscriptions in C#?
Take the following C# class:
c1 {
event EventHandler someEvent;
}
If there are a lot of subscriptions to c1's someEvent event and I want to clear them all, what is the best way to achieve this? ...
41
votes
1answer
2k views
5 years later, is there something better than the “Fastest Possible C++ Delegates”?
I know that the topic of "C++ delegates" has been done to death, and both http://www.codeproject.com and http://stackoverflow.com deeply cover the question.
Generally, it seems that Don Clugston's ...
41
votes
3answers
13k views
Why must a lambda expression be cast when supplied as a plain Delegate parameter
Take the method System.Windows.Forms.Control.Invoke(Delegate method)
Why does this give a compile time error:
string str = "woop";
Invoke(() => this.Text = str);
// Error: Cannot convert lambda ...
33
votes
4answers
9k views
delegate keyword vs. lambda notation
Once it is compiled, is there a difference between:
delegate { x = 0; }
and
() => { x = 0 }
?
32
votes
8answers
2k views
What is Delegate?
I am confused that what is the actual role of a delegate? I have been asked this question many times in my interviews, but I don't think that interviewers were satisfied with my answer.
Can anyone ...
32
votes
8answers
14k views
Difference between events and delegates and its respective applications
I don't see advantages of using events over delegates, other than being syntactical sugar . Perhaps I am misunderstanding, but it seems that events is just a placeholder for delegate.
Would you guys ...
31
votes
10answers
3k views
Is there a downside to adding an anonymous empty delegate on event declaration?
I have seen a few mentions of this idiom (including on SO):
// Deliberately empty subscriber
public event EventHandler AskQuestion = delegate {};
The upside is clear - it avoids the need to check ...
29
votes
13answers
1k views
Delegates, Why? [closed]
Possible Duplicates:
When would you use delegates in C#?
The purpose of delegates
I have seen many question regarding the use of delegates. I am still not clear where and WHY would you ...
29
votes
4answers
5k views
Why would you use Expression<Func<T>> rather than Func<T>?
I understand lambdas and the Func and Action delegates. But expressions stump me. In what circumstances would you use an Expression<Func<T>> rather than a plain old Func<T>?
29
votes
8answers
19k views
Java Delegates?
Does the Java language have delegate features, similar to how C# has support for delegates?
28
votes
5answers
538 views
What is the lifetime of a delegate created by a lambda in C#?
Lambdas are nice, as they offer brevity and locality and an extra form of encapsulation. Instead of having to write functions which are only used once you can use a lambda.
While wondering how they ...
27
votes
4answers
2k views
Compiler Ambiguous invocation error - anonymous method and method group with Func<> or Action
I have a scenario where I want to use method group syntax rather than anonymous methods (or lambda syntax) for calling a function.
The function has two overloads, one that takes an Action, the other ...
25
votes
3answers
817 views
Co- and Contravariance bugs in .NET 4.0
Some strange behavior with the C# 4.0 co- and contravariance support:
using System;
class Program {
static void Foo(object x) { }
static void Main() {
Action<string> action = _ => { ...
25
votes
5answers
2k views
What are the differences between delegates and events?
What are the differences between delegates and an events? Don't both hold references to functions that can be executed?
24
votes
4answers
5k views
Delegates: Predicate Action Func
Can someone provide a good explanation (hopefully with examples) of these 3 most important delegates:
Predicate
Action
Func
What other delegates should a C# developer be aware of?
How often do ...
24
votes
9answers
9k views
Create empty C# event handlers automatically
It is not possible to fire an event in C# that has no handlers attached to it. So before each call it is necessary to check if the event is null.
if ( MyEvent != null ) {
MyEvent( param1, param2 );
...
23
votes
5answers
3k views
Eclipse gets stuck when trying to launch Android app
I'm trying to run helloandroid application on a Motorola Milestone A853. I typed "adb devices" and the mobile is properly recognized. However, when I try to run the application Eclipse always stuck at ...
23
votes
3answers
3k views
C#: Difference between ' += anEvent' and ' += new EventHandler(anEvent)'
Take the below code:
private void anEvent(object sender, EventArgs e) {
//some code
}
What is the difference between the following ?
[object].[event] += anEvent;
//and
[object].[event] += ...
23
votes
6answers
4k views
Is EndInvoke() optional, sort-of optional, or definitely not optional?
I've read conflicting opinions as to whether every BeginInvoke() has to be matched by an EndInvoke(). Are there any leaks or other problems associated with NOT calling EndInvoke()?
22
votes
2answers
4k views
Func vs. Action vs. Predicate
With real examples and their use, can someone please help me understand:
When do we need Func delegate?
When do we need Action delegate?
When do we need Predicates delegate?
22
votes
4answers
5k views
C# Generics wont allow Delegate Type Constraints
Is it possible to define a class in C# such that
class GenericCollection<T> : SomeBaseCollection<T> where T : Delegate
I couldn't for the life of me accomplish this last night in .NET ...
22
votes
3answers
12k views
How do you declare a Predicate Delegate inline?
I'm using C#.
So I have an object which has some fields, doesn't really matter what.
I have a generic list of these objects.
List<MyObject> myObjects = new List<MyObject>();
...
21
votes
3answers
22k views
How to use custom delegates in Objective-C
I need to know about the usage of delegate methods in Objective-C. Can anyone point me to the correct source?
21
votes
2answers
8k views
How to correctly unregister an event handler
In a code review, I stumbled over this (simplified) code fragment to unregister an event handler:
Fire -= new MyDelegate(OnFire);
I thought that this does not unregister the event handler because ...
20
votes
7answers
704 views
Why does trying to understand delegates feel like trying to understand the nature of the universe?
I've read two books, tons of examples. They still make next to no sense to me. I could probably write some code that uses delegates, but I have no idea why. Am I the only one with this problem, or am ...
20
votes
6answers
2k views
a constructor as a delegate - is it possible in C#?
I have a class like below:
class Foo
{
public Foo(int x) { ... }
}
and I need to pass to a certain method a delegate like this:
delegate Foo FooGenerator(int x);
Is it possible to pass the ...
20
votes
10answers
14k views
Function Pointers in Java
This may be something common and trivial, but I seem to be having trouble finding a concrete answer. In C# there is a concept of delegates, which relates strongly to the idea of function pointers from ...
19
votes
7answers
328 views
Why are delegates reference types?
Quick note on the accepted answer: I disagree with a small part of Jeffrey's answer, namely the point that since Delegate had to be a reference type, it follows that all delegates are reference types. ...
19
votes
2answers
280 views
Extension method that extends T - bad practice?
I've read that it is usually bad practice to extend System.Object, which I do agree with.
I am curious, however, if the following would be considered a useful extension method, or is it still bad ...
19
votes
3answers
3k views
Builds a Delegate from MethodInfo?
After googling and landing on SO and having read this other question
Is it possible to build a correct Delegate from a MethodInfo if you didn't know the number or types of parameters at compile ...
18
votes
3answers
665 views
Open delegate for generic interface method
I'm trying to create an open instance delegate for a generic interface method, but I keep receiving a NotSupportedException. Here is the simplified code that won't run:
interface IFoo
{
void ...
18
votes
4answers
236 views
Why do 2 delegate instances return the same hashcode?
Take the following:
var x = new Action(() => { Console.Write("") ; });
var y = new Action(() => { });
var a = x.GetHashCode();
var b = y.GetHashCode();
Console.WriteLine(a == b);
...
18
votes
5answers
2k views
The proper way of raising events in the .NET framework
Currently "Avoid checking for null event handlers" is at the top of the answers to the post titled Hidden Features of C# and it contains severely misleading information.
While I understand that Stack ...
18
votes
5answers
7k views
C# 3.0 generic type inference - passing a delegate as a function parameter
I am wondering why the C# 3.0 compiler is unable to infer the type of a method when it is passed as a parameter to a generic function when it can implicitly create a delegate for the same method.
...
18
votes
9answers
12k views
C# Dynamic Event Subscription
How would you dynamically subscribe to a C# event so that given a Object instance and a String name containing the name of the event, you subscribe to that event and do something (write to the console ...
17
votes
7answers
3k views
How do I Unregister 'anonymous' event handler
Say if I listen for an event:
Subject.NewEvent += delegate(object sender, NewEventArgs e)
{
//some code
});
Now how do I un-register this event? Or just allow the memory to leak?
17
votes
1answer
4k views
Checking to see if an optional protocol method has been implemented
Does anyone know the best way to check to see if an optional protocol method has been implemented.
I tried this:
if ([self.delegate respondsToSelector:@selector(optionalProtocolMethod:)] )
where ...
16
votes
2answers
703 views
What is the difference between delegates in C# and functions as first class values in F#?
More specifically what are the characteristics (if any) that delegates have that functions as first class values in F# don't have; and what are the characteristics that functions as first class values ...
16
votes
2answers
5k views
How do C# Events work behind the scenes?
I'm using C#, .NET 3.5. I understand how to utilize events, how to declare them in my class, how to hook them from somewhere else, etc. A contrived example:
public class MyList
{
private ...
15
votes
1answer
177 views
difference between appdelegate and delegate in viewcontroller
I want to integrate one sample code with (for example SampleCode project) my iPhone application .In the sample code in firstViewController is added in MainWindow.xib and linked to viewController ...
15
votes
11answers
533 views
Can someone distill into proper English what a delegate is?
Can someone please break down what a delegate is into a simple, short and terse explanation that encompasses both the purpose and general benefits? I've tried to wrap my head around this and it's ...
15
votes
10answers
4k views
How do you use Func<> and Action<> when designing applications?
All the examples I can find about Func<> and Action<> are simple as in the one below where you see how they technically work but I would like to see them used in examples where they solve ...