Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

What is the Difference between Overriding and overloading?

Answer Posted / aparna murthy

overloading is the ability to define several methods with
the same name ,provided each method has a different signature.

example:--

class shape
{
public void area(double r)
{
console.writeline("Area of circle :"+(3.14*r*r));
}
public void area(double l,double b)
{
console.writeline("Area of rectangle :"+(l*b));
}
public void area(int b,int h)
{
console.writeline("Area of rectangle :"+(0.5*b*h));
}
}
class program
{
static void main(string[]args)
{
shape s=new shape()
s.area(7,6)
s.area(22,11);
s.area(12,20);
console.read();
}
}

try this example.....

signature of a method is the datatype of the
parameters,number of parameters and the sequence in which
they are passed to the function .

overriding:---
In method overriding method have same names same signatures
same return types but in different scopes(classes) in
hierarchy .c# uses virtual and override keywords to define
method overriding .Method overriding enables object to
resolve method invocation at runtime.we call it late binding
behavior of object.
1.An override declaration cannot change the accesibility of
vitual method .Both the override method and the virtual
method must have the same access level modifier.
2.Methods which are to be overriden in the subsequent
derived class are made virtual or abstract in base class.

example:--

class employee
{
public virtual double calculatesalary()
{
return basic+hra+da;
}
}
class manager:employee
{
public override double calculatesalary()
{
return basic+hra+da+allowances;
}
}
static void main(string[] args)
{
employee mgr=new manager();
double salary=mgr.calculatesalary();
console.writeline(salary);
console.readline();

}

Is This Answer Correct ?    2 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain what observations between vb.net and vc#.net?

901


Did vb6 support multi-threading ?

910


Name some different types of control?

930


Described strong typing and weak typing?

1017


Explain how to achieve polymorphism in vb.net?

896


What’s the difference between private and shared assembly?

1066


Which properties are used to bind a DataGridView control?

1063


What is the difference between convert.tostring and .tostring() method?

971


What are the differences between vb.net and c#, related to oops concepts

929


how to deploy vb.net with key and evaluation time? any one can help me?

2139


Write a VB.Net console program to check whether a number is perfect or not.

7700


What is the difference between import system.data.sqlclient and system.data.oledb?

881


Explain the difference between vb 6 and vb.net?

923


What is normal jit?

1004


What is an application domain? how they get created?

957