本文介绍了什么是“超载"/“超载"/“超载"?意思是?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

限时删除!!

重载"/重载"在编程方面是什么意思?

What does "Overloaded"/"Overload" mean in regards to programming?

推荐答案

这意味着您要提供一个具有相同名称但具有不同签名的函数(方法或运算符).例如:

It means that you are providing a function (method or operator) with the same name, but with a different signature.For example:

void doSomething();
int doSomething(string x);
int doSomething(int a, int b, int c);

这篇关于什么是“超载"/“超载"/“超载"?意思是?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

1403页,肝出来的..

09-08 17:34