Java Delegates?(Java 代表?)
问题描述
Java 语言是否具有委托功能,类似于 C# 对委托的支持?
Does the Java language have delegate features, similar to how C# has support for delegates?
推荐答案
不是,不是.
你也许可以通过使用反射来获取可以调用的 Method 对象来达到相同的效果,另一种方法是使用单个invoke"或execute"方法创建一个接口,然后将它们实例化为调用您感兴趣的方法(即使用匿名内部类).
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).
您可能还会发现这篇文章很有趣/有用:一位 Java 程序员看 C# 代表 (@blueskyprojects.com)
You might also find this article interesting / useful : A Java Programmer Looks at C# Delegates (@blueskyprojects.com)
这篇关于Java 代表?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Java 代表?
基础教程推荐
- 无法复制:“比较方法违反了它的一般约定!" 2022-01-01
- 修改 void 函数的输入参数,然后读取 2022-01-01
- Struts2 URL 无法访问 2022-01-01
- REST Web 服务返回 415 - 不支持的媒体类型 2022-01-01
- 问题http://apache.org/xml/features/xinclude测试日志4j 2 2022-01-01
- RabbitMQ:消息保持“未确认"; 2022-01-01
- 如何对 Java Hashmap 中的值求和 2022-01-01
- 存储 20 位数字的数据类型 2022-01-01
- Spring AOP错误无法懒惰地为此建议构建thisJoinPoin 2022-09-13
- 使用堆栈算法进行括号/括号匹配 2022-01-01
