Java Delegates? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T09:59:30Z http://stackoverflow.com/feeds/question/44912 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/44912/java-delegates 6 Java Delegates? Mark 2008-09-04T22:45:00Z 2008-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#44916 2 Answer by Patrick for Java Delegates? Patrick 2008-09-04T22:49:05Z 2008-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#44922 1 Answer by Blorgbeard for Java Delegates? Blorgbeard 2008-09-04T22:52:09Z 2008-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#44924 2 Answer by SCdF for Java Delegates? SCdF 2008-09-04T22:52:38Z 2008-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#44928 6 Answer by Matt Sheppard for Java Delegates? Matt Sheppard 2008-09-04T22:54:49Z 2008-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#45009 1 Answer by John Meagher for Java Delegates? John Meagher 2008-09-05T00:07:23Z 2008-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>