vs2015 dynamicweb3-15 类继承

webform1.aspx

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="dynamicweb3_15.WebForm1" %>

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <asp:Label ID="Label1" runat="server" Text="Label"></asp:Label>
    </div>
    </form>
</body>
</html>

webform1.aspx.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

namespace dynamicweb3_15
{
    public partial class WebForm1 : System.Web.UI.Page
    {
        class Animal
        {
            int weight;
            int age;
            public Animal(int w, int a)
            {
                weight = w;
                age = a;
            }
            public string Dispaly(string name="Animal")
            {
                return name + " Weight=" + this.weight + ",age=" + this.age;
            }
        }
        //继承
        class Dog : Animal
        {
            public Dog(int w, int a)
                : base(w, a)
            {
                
            }

            public string Display(string name="Dog")
            {
                return base.Dispaly(name);
            }
        }

        protected void Page_Load(object sender, EventArgs e)
        {
            Dog wangcai = new Dog(10, 8);
            Label1.Text = wangcai.Dispaly("wangcai");
        }
    }
}

猜你喜欢

转载自blog.csdn.net/modern358/article/details/115391327