In this article, we'll look at what abstract in C# is. Also we'll look at
In C# abstract modifier indicates that the thing being modified has a missing or incomplete implementation. This modifier can be used with classes, methods, properties, indexers and events. Abstract classes can contain both abstract and non-abstract members. Abstract member cannot exist outside an abstract class. You can instantiate abstract class by making a concrete class deriving from it (An instance of a derived class is also a instance of its base class).
Also you can't create abstract constructor because abstract means you must override it in any non-abstract child class. But you can have non-abstract constructors. You can't override a constructor. You can't create sealed abstract classes.
You cannot have non-abstract method signature inside abstract class. For non-abstract methods you must provide implementation (link). You cannot have private virtual or abstract members inside a abstract class. But You can have non-abstract private methods inside abstract classes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
Animal dog = new Dog(); | |
Console.WriteLine(dog.MakeSound()); //Animal.MakeSound | |
Console.ReadLine(); | |
} | |
} | |
class Dog : Animal { } | |
abstract class Animal | |
{ | |
public string MakeSound() | |
{ | |
return "Animal.MakeSound"; | |
} | |
//Cannot do this | |
//public string GetLegsCount(); | |
} |
In abstract class, if you declare a method as virtual, you can override it in a derived class.(Difference between abstract and virtual) If you create a normal method in abstract class it won't be available in derived class because it doesn't need to be overridden (that's why we mark things as virtual)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
Animal dog = new Dog(); | |
WriteLine(dog.GetColor()); //Animal.GetColor | |
WriteLine(dog.GetLegCount()); //Dog has 4 legs | |
Console.ReadLine(); | |
} | |
static void WriteLine(string textToWrite) | |
{ | |
Console.WriteLine(textToWrite); | |
} | |
} | |
class Dog : Animal | |
{ | |
public override string GetLegCount() | |
{ | |
//return base.GetLegCount(); | |
return "Dog has 4 legs"; | |
} | |
} | |
abstract class Animal | |
{ | |
public virtual string GetColor() | |
{ | |
return "Animal.GetColor"; | |
} | |
public virtual string GetLegCount() | |
{ | |
return "Animal.GetLegCount"; | |
} | |
} |
You cannot have virtual methods without any method body. Also you cannot have a abstract method with a method body. You must implement all abstract methods and accessors in the class you derive from the abstract class.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
abstract class Animal | |
{ | |
//Correct | |
public virtual string GetColor() | |
{ | |
return "Animal.GetColor"; | |
} | |
//Wrong | |
public virtual string GetName(); | |
//Correct | |
public abstract string GetLegsCount(); | |
//Wrong | |
public abstract string GetOwner() | |
{ | |
return "Animal.GetOwner"; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
abstract class Animal | |
{ | |
//Wrong | |
abstract int LegCount; | |
//Wrong | |
abstract string OwnerName { get; set; } | |
//Correct | |
public abstract string OwnerName { get; set; } | |
} |
When to use abstract
- Abstract classes are useful when you need a class for the purpose of inheritance and polymorphism, but it makes no sense to instantiate the class itself, only its subclasses. They are commonly used when you want to define a template for a group of subclasses that share some common implementation code, but you also want to guarantee that the objects of the super class cannot be created.
- For instance, let's say you need to create Dog, Cat, Hamster and Fish objects. They possess similar properties like color, size, and number of legs as well as behavior so you create an Animal super class. However, what color is an Animal? How many legs does an Animal object have? In this case, it doesn't make much sense to instantiate an object of type Animal but rather only its subclasses.
- Abstract classes also have the added benefit in polymorphism allowing you to use the (abstract) super class's type as a method argument or a return type. If for example you had a PetOwner class with a train() method you can define it as taking in an object of type Animal e.g. train(Animal a) as opposed to creating a method for every subtype of Animal
0 comments:
Post a Comment