Mess up | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 1

Mess up

In methods >> method overloading It would return a error, not a number because, theres not int/double variable when sending the value.

31st Jan 2021, 10:34 AM
Plus Gaming
Plus Gaming - avatar
2 Answers
+ 2
Specify relevant language in the tags above (where you wrote "methods") please. It helps clarify language context. And attach the code if this was code related issue. https://www.sololearn.com/post/75089/?ref=app
31st Jan 2021, 11:18 AM
Ipang
+ 1
You have to have the correct parameter list for overloaded methods to work for example Method m1(int,int,string); //1st //overloaded method //2nd Method m1(int); m1(1,2,"3"); //calls 1st method m1(3); //calls 2nd method If a method returns somthing make sure the return type in the signature is correct the return type in the signature has nothing to do with the parameter list only what this method returns void returns nothing int returns int string return strings ect ect
31st Jan 2021, 1:56 PM
D_Stark
D_Stark - avatar