首頁  >  文章  >  後端開發  >  C# 相當於 Java 函數式介面

C# 相當於 Java 函數式介面

PHPz
PHPz轉載
2023-08-26 12:09:111280瀏覽

C# 相当于 Java 函数式接口

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中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除