内容简介:翻译自:https://stackoverflow.com/questions/2298997/why-cant-a-delegate-refer-to-a-non-static-method-when-used-in-a-static-method
为什么在C#中使用委托时需要使用STATIC函数?
class Program { delegate int Fun (int a, int b); static void Main(string[] args) { Fun F1 = new Fun(Add); int Res= F1(2,3); Console.WriteLine(Res); } **static public int Add(int a, int b)** { int result; result = a + b; return result; } }
这不是必需的”.但是你的Main方法是静态的,所以它不能调用非静态方法.尝试这样的事情(这不是一个很好的做事方式 – 你真的应该创建一个新类,但它不会改变你的样本):
class Program { delegate int Fun (int a, int b); void Execute() { Fun F1 = new Fun(Add); int Res= F1(2,3); Console.WriteLine(Res); } static void Main(string[] args) { var program = new Program(); program.Execute(); } int Add(int a, int b) { int result; result = a + b; return result; } }
翻译自:https://stackoverflow.com/questions/2298997/why-cant-a-delegate-refer-to-a-non-static-method-when-used-in-a-static-method
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:- 理解实例方法、类方法、静态方法
- 静态方法、实例化方法与线程安全
- [译] Java 8 接口改变:静态方法与默认方法
- iOS 常用调试方法:静态分析
- iOS常用调试方法:静态分析
- objective-c – 目标C中的静态方法(不是类方法)
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。