本文介绍了代表优势的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好,

public delegate int Calculate (int value1, int value2);


这是一个委托声明.我们正在使用像这样的委托对象来调用类方法

Calculate add = new Calculate(mc.add);
Calculate sub = new Calculate(mc.sub);



我们可以通过类对象调用此方法.但是为什么我们要使用此委托?
代表的优势是什么?请举例说明.


预先感谢,
Rajkumar.C

解决方案



Hi all,

public delegate int Calculate (int value1, int value2);


This is a delegate declaration. We are calling class methods using delegate objects like this

Calculate add = new Calculate(mc.add);
Calculate sub = new Calculate(mc.sub);



we can call this methods through class objects. But why we use this delegates?
what are the advantages of delegates. Please explain with example.


Thanks in advance,
Rajkumar.C

解决方案




这篇关于代表优势的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-12 00:32