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 are abstract classes? what is overriding?

Answer Posted / maloy.adhikari

abstract Class: I find a Proper ans there.

So Posting For Overriding.
Method Overriding:

Method overriding occurs when child class declares a method
that has the same type arguments as a method declared by one
of its superclass.
Method overriding forms Run-time polymorphism.

Eg1:
Class Maloy
{
virtual void hello()
{ Console.WriteLine(“Hello from Maloy”); }
}
Class Adhikari: Maloy
{
override void hello()
{ Console.WriteLine(“Hello from Adhikari”); }
}
static void main()
{
parent objmaloy = new Adhikari();
objmaloy .hello();
}
//Output
Hello from Adhikari.
..................
Hope You Understand This.

Is This Answer Correct ?    4 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the difference between ViewData, ViewBag and TempData?

1083


Why to use “{resource}.axd/{*pathinfo}” in routing in mvc?

1138


What is entity graph? : Entity framework

992


What are actions in mvc?

1011


Which are the important namespaces used in mvc?

1203


What is viewstart page in mvc?

1036


How can you return string result from Action in ASP.Net MVC?

1056


What is the version number for the next version of the .net framework, codenamed �orcas�?

945


Name a few different return types of a controller action method?

1118


How does the 'page lifecycle' of asp.net mvc works?

1096


How to answer for project questions..?

2711


What is the difference between model view and controller?

951


What is the full form of sp?

998


What is meant by viewdata?

993


What is entity framework in asp net?

1107