zoukankan      html  css  js  c++  java
  • 第二节

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;

    namespace Txst2_1
    {
    class Animal
    {
    private Boolean m_sex;
    private int m_age;
    public bool Sex
    {
    get { return m_sex; }
    set { m_sex = false; }
    }
    public int Age
    {
    get { return m_age; }
    set { m_age = value; }
    }
    public virtual string Introduce()
    {
    if (Sex == true)
    return "This is a male Animal";
    else
    return "This is a female Animal";
    }
    }
    class Dog:Animal
    {
    public Dog()
    {
    Sex = true;
    }
    public override string Introduce()
    {
    if (Sex == true)
    return "This is a male Dog";
    else
    return "This is a female Dog";
    }
    }
    class Cat:Animal
    {
    public override string Introduce()
    {
    if (Sex == true)
    return "This is a male Cat";
    else
    return "This is a female Cat";
    }
    }
    class Program
    {
    static void Main(string[] args)
    {
    Animal ani = new Animal();
    Console.WriteLine(ani.Introduce());
    Animal dog = new Dog();
    Console.WriteLine(dog.Introduce());
    Animal cat = new Cat();
    Console.WriteLine(cat.Introduce());
    Console.Read();
    }
    }
    }

  • 相关阅读:
    OCP-1Z0-053-V12.02-40题
    OCP-1Z0-053-V12.02-255题
    OCP-1Z0-053-V12.02-407题
    OCP-1Z0-053-V12.02-298题
    OCP-1Z0-053-V12.02-38题
    OCP-1Z0-053-V12.02-274题
    OCP-1Z0-053-V12.02-159题
    OCP-1Z0-053-V12.02-406题
    OCP-1Z0-053-V12.02-369题
    OCP-1Z0-053-V12.02-610题
  • 原文地址:https://www.cnblogs.com/zjk123/p/7538411.html
Copyright © 2011-2022 走看看