一个简单的演示示例,如下:
1、抽象类可以包含抽象方法和实例方法;抽象类可以没有抽象方法,但有抽象方法的类一定是抽象类。
2、抽象方法声明时没有实现体,类似于接口中声明的方法。
3、抽象方法必须在派生类中通过override覆写来实现,这点也类似于接口,但不同的是实现接口的方法不用override。
using System;可以归纳出几点信息:
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace WebApplication4
{
public abstract class Test1
{
public void TestMethod1(string s1)
{
HttpContext.Current.Response.Write(s1);
}
protected abstract void TestMethod2(string s2);
}
public class Test2 : Test1
{
protected override void TestMethod2(string s2)
{
HttpContext.Current.Response.Write(s2);
}
}
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
Test2 t2 = new Test2();
t2.TestMethod1("aa");
}
}
}
1、抽象类可以包含抽象方法和实例方法;抽象类可以没有抽象方法,但有抽象方法的类一定是抽象类。
2、抽象方法声明时没有实现体,类似于接口中声明的方法。
3、抽象方法必须在派生类中通过override覆写来实现,这点也类似于接口,但不同的是实现接口的方法不用override。