Java Delegates? - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T09:59:30Zhttp://stackoverflow.com/feeds/question/44912http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/44912/java-delegates6Java Delegates?Mark2008-09-04T22:45:00Z2008-09-05T00:07:23Z
<p>Does the Java language have delegate features, similar to how C# has support for delegates?</p>
http://stackoverflow.com/questions/44912/java-delegates/44916#449162Answer by Patrick for Java Delegates?Patrick2008-09-04T22:49:05Z2008-09-04T22:49:05Z<p>Short story: <a href="http://java.sun.com/docs/white/delegates.html" rel="nofollow">no</a>.</p>
http://stackoverflow.com/questions/44912/java-delegates/44922#449221Answer by Blorgbeard for Java Delegates?Blorgbeard2008-09-04T22:52:09Z2008-09-04T22:52:09Z<p>No, but here's an <a href="http://www.onjava.com/pub/a/onjava/2003/05/21/delegates.html" rel="nofollow">article</a> on how to sort of implement them.</p>
http://stackoverflow.com/questions/44912/java-delegates/44924#449242Answer by SCdF for Java Delegates?SCdF2008-09-04T22:52:38Z2008-09-04T22:52:38Z<p>As it says in what <a href="http://beta.stackoverflow.com/questions/44912/java-delegates#44916" rel="nofollow">Patrick</a> <a href="http://java.sun.com/docs/white/delegates.html" rel="nofollow">linked</a> you want to use inner classes instead.</p>
http://stackoverflow.com/questions/44912/java-delegates/44928#449286Answer by Matt Sheppard for Java Delegates?Matt Sheppard2008-09-04T22:54:49Z2008-09-04T22:54:49Z<p>Not really, no.</p>
<p>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).</p>
<p>You might also find this article interesting / useful : <a href="http://www.onjava.com/pub/a/onjava/2003/05/21/delegates.html" rel="nofollow">A Java Programmer Looks at C# Delegates</a></p>
http://stackoverflow.com/questions/44912/java-delegates/45009#450091Answer by John Meagher for Java Delegates?John Meagher2008-09-05T00:07:23Z2008-09-05T00:07:23Z<p>While it is nowhere nearly as clean, but you could implement something like C# delegates using a Java <a href="http://java.sun.com/javase/6/docs/api/java/lang/reflect/Proxy.html" rel="nofollow">Proxy</a>. </p>