数据抽象是隐藏某些细节并仅向用户显示基本信息的过程。
抽象可以通过以下任一方式实现抽象类或者接口(您将在下一章中了解更多内容)。
这个abstract
关键字用于类和方法:
抽象类可以同时具有抽象方法和常规方法:
abstract class Animal
{
public abstract void animalSound();
public void sleep()
{
Console.WriteLine("Zzz");
}
}
从上面的例子来看,不可能创建 Animal 类的对象:
Animal myObj = new Animal(); // Will generate an error (Cannot create an instance of the abstract class or interface 'Animal')
要访问抽象类,必须从另一个类继承它。让我们转换我们在中使用的 Animal 类多态性抽象类的章节。
记得从传承篇我们使用 :
符号从类继承,我们使用override
关键字覆盖基类方法。
// Abstract class
abstract class Animal
{
// Abstract method (does not have a body)
public abstract void animalSound();
// Regular method
public void sleep()
{
Console.WriteLine("Zzz");
}
}
// Derived class (inherit from Animal)
class Pig : Animal
{
public override void animalSound()
{
// The body of animalSound() is provided here
Console.WriteLine("The pig says: wee wee");
}
}
class Program
{
static void Main(string[] args)
{
Pig myPig = new Pig(); // Create a Pig object
myPig.animalSound(); // Call the abstract method
myPig.sleep(); // Call the regular method
}
}
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!