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() { } }
广告