Does the Java language have delegate features, similar to how C# has support for delegates?
|
|
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 |
|||||
|
|
Short story: no. |
|||||||||||||||||||
|
|
Have you read this :
|
||||
|
|
|
No, but they're fakeable using proxies and reflection:
The nice thing about this idiom is that you can verify that the delegated-to method exists, and has the required signature, at the point where you create the delegator (although not at compile-time, unfortunately, although a FindBugs plug-in might help here), then use it safely to delegate to various instances. See the karg code on github for more tests and implementation. |
|||
|
|
|
Depending precisely what you mean, you can achieve a similar effect (passing around a method) using the Strategy Pattern. Instead of a line like this declaring a named method signature:
declare an interface:
For concrete implementations of the method, define a class that implements the behaviour:
Then wherever you would have had a
|
|||
|
|
|
While it is nowhere nearly as clean, but you could implement something like C# delegates using a Java Proxy. |
|||
|
|
|
I have implemented callback/delegate support in Java using reflection. Details and working source are available on my website. |
|||
|
|
|
Its not true that you cannot do somthing like delegates in Java, take a look at this: |
|||
|
|
|
No, but it has similar behavior, internally. In C# delegates are used to creates a separate entry point and they work much like a function pointer. In java there is no thing as function pointer (on a upper look) but internally Java needs to do the same thing in order to achieve these objectives. For example, creating threads in Java requires a class extending Thread or implementing Runnable, because a class object variable can be used a memory location pointer. |
||||
|
|
|
Java doesn't have delegates and is proud of it :). From what I read here I found in essence 2 ways to fake delegates: 1. reflection; 2. inner class Reflections are slooooow! Inner class does not cover the simplest use-case: sort function. Do not want to go into details, but the solution with inner class basically is to create a wrapper class for an array of integers to be sorted in ascending order and an class for an array of integers to be sorted in descending order. |
|||||
|