vote up 6 vote down star
1

Does the Java language have delegate features, similar to how C# has support for delegates?

flag

5 Answers

vote up 6 vote down check

Not really, no.

You may be able to achieve the same effect by using reflection to get Method objects you can then invoke, and the other way is to create an interface with a single 'invoke' or 'execute' method, and then instantiate them to call the method your interested in (i.e. using an anonymous inner class).

You might also find this article interesting / useful : A Java Programmer Looks at C# Delegates

link|flag
vote up 2 vote down

Short story: no.

link|flag
vote up 1 vote down

No, but here's an article on how to sort of implement them.

link|flag
vote up 2 vote down

As it says in what Patrick linked you want to use inner classes instead.

link|flag
vote up 0 vote down

While it is nowhere nearly as clean, but you could implement something like C# delegates using a Java Proxy.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.