articles

Home / DeveloperSection / Articles / Method Overloading

Method Overloading

Anonymous User3662 17-Jul-2010

In method overloading method performs the different task at the different input

parameters with same method name and in same class.  

Example

To explain the concept of overloading I have created two classes Poly

    public class poly
    {
//these two functions, sum(), are overloaded.
        public int sum(int x, int y)
        {
            return (x + y);
        }
        public virtual int sum(int x, int y, int z)
        {
            return (x + y + z);
        }
    }

 

 

 


Updated 04-Mar-2020
I am a content writter !

Leave Comment

Comments

Liked By