Java 的函数式接口在 C# 中相当于 Delegate。
让我们看看 Java 中函数式接口的实现 -
@FunctionalInterface public interface MyInterface { void invoke(); } public class Demo { void method(){ MyInterface x = () -> MyFunc (); x.invoke(); } void MyFunc() { } }
C# 延迟中的相同实现 -
public delegate void MyInterface (); public class Demo { internal virtual void method() { MyInterface x = () => MyFunc (); x(); } internal virtual void MyFunc() { } }
以上是C# 相当于 Java 函数式接口的详细内容。更多信息请关注PHP中文网其他相关文章!