您的位置:首页 > 其它

.NET抽象类与抽象方法示例

2013-03-11 09:56 141 查看
一个简单的演示示例,如下:

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。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: