C # Certification Two unit first question

Source: Internet
Author: User

1: Run Results

The code is as follows:

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 ();
}
}
}

C # Certification Two unit first question

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.