2

我正在学习 OOAD 并尝试通过继承来实现类关系,但这里有一个问题是代码

家长班

namespace ConsoleApplication1
{
    abstract class Classification
    {
        public abstract string type();
    }
}

第一儿童班

namespace ConsoleApplication1
{
    class FullTime : Classification
    {
        bool inCampus;
        string roomDetail;
        float rent;

        public FullTime(string studentRoomDetail, float studentRent)
        {
            this.inCampus = true;
            this.roomDetail = studentRoomDetail;
            this.rent = studentRent;
        }

        public FullTime()
        {
            this.inCampus = false;
        }

        public string printAccommodationDescription()
        {
            if (!this.inCampus)
            {
                return "Not in campus";
            }
            else
            {
                return "Room: " + this.roomDetail + " Rent: " + this.rent.ToString();
            }
        }

        public override string type()
        {
            return "fulltime";
        }
    }
}

第二儿童班

namespace ConsoleApplication1
{
    class PartTime : Classification
    {
        bool onJob;
        string jobTitle;
        float salary;

        public PartTime(string studentJobTitle, float studentSalary)
        {
            this.onJob = true;
            this.jobTitle = studentJobTitle;
            this.salary = studentSalary;

        }

        public PartTime()
        {
            this.onJob = false;
        }

        public string printJobDescription()
        {
            if (!this.onJob)
            {
                return "Not on job";
            }
            else
            {
                return "JobTitle: " + this.jobTitle + " Salary: " + this.salary.ToString();
            }
        }

        public override string type()
        {
            return "parttime";
        }
    }
}

现在在Program.cs中,当我尝试printJobDescriptionPartTime类中访问方法时

Classification classification = new PartTime("Software Engineer", 10000);
classification.printJobDescription();

它说

错误 CS1061 'Classification' 不包含'printAccommodationDescription' 的定义,并且找不到接受'Classification' 类型的第一个参数的扩展方法'printAccommodationDescription'(您是否缺少 using 指令或程序集引用?)

我该如何解决这个问题?

更新

我需要让对象在运行时更改其类的能力,因此我必须创建类型的对象Classification并使用其他类中未实现的任一方法

4

2 回答 2

1

您只能使用在您使用的类中声明的函数。

abstract class Classification
{
  public abstract string type();
}

class PartTime : Classification
{
  public override string type() {...}
  public Job1() {...}
}

class FullTime : Classification
{
  public override string type() {...}
  public Job2() {...}
}
  • 分类类型的对象只能使用 type()
  • PartTime 类型的对象可以使用 type 和 Job1()
  • FullTime 类型的对象可以使用 type 和 Job2()

如果你有这样的对象:

Classification classification = new PartTime();

而且您不知道哪种特殊类型,您必须强制转换此对象才能使用其他方法:

if (classification is PartTime)
{
  ((PartTime)classification).Job1();
}
else if (classification is FullTime)
{
  ((FullTime)classification).Job2();
}

希望这可以帮助。

于 2015-11-28T17:27:38.070 回答
0

将您的对象转换为另一种对象类型时,称为Polymorphism。这意味着您只能使用暴露给目标对象类型的方法和属性,而目标对象类型Classification不知道您的方法。

我做的简单例子:

using System;

namespace Program
{
    public class Program
    {
        public static void Main()
        {
            Dog rex = new Dog();
            Animal rexAsAnimal = rex;

            // Can access 'MakeSound' due the fact it declared at Dog (Inherited by Animal)
            Console.WriteLine(rex.MakeSound()); // Output: Bark

            // Compilation error: rexAsAnimal is defined as 'Animal' which doesn't have the 'Bark' method.
            //Console.WriteLine(rexAsAnimal.Bark()); // Output when uncomment: Compilation error.

            // Explicitly telling the compiler to cast the object into "Dog"
            Console.WriteLine(((Dog)rexAsAnimal).Bark()); // Output: Bark
        }
    }

    public abstract class Animal
    {
        public abstract string MakeSound();
    }

    public class Dog : Animal
    {
        public override string MakeSound() { return Bark(); }
        public string Bark()
        {
            return "Bark";
        }
    }
}
于 2015-11-28T17:20:57.710 回答