Java 函数式接口在 C# 中的等价形式


Java 函数式接口在 C# 中等效于委托。

下面让我们了解 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() {
   }
}

更新于: 22-Jun-2020

2 千+ 浏览量

开启您的职业生涯

完成这门课程,获得认证

开始学习
广告