gpt4 book ai didi

C# 不能覆盖继承的成员

转载 作者:太空狗 更新时间:2023-10-29 22:09:11 25 4
gpt4 key购买 nike

我正在从一本名为 Chegwidden Gladdis 的书中学习 C#。我正在制作与书中所写相同的程序和相同的代码。但有一个问题。我不能覆盖父类的方法。我从本章开始就完整地阅读了这本书,5 遍,一切都是一样的,但我不明白为什么我不能重写父类中的方法。这是来自基类 PassFailActivity.cs 的代码

using System;
namespace ProtectedMembers
{
public class PassFailActivity : GradedActivity2
{
private double minPassingScore; // Minimum passing score

/// <summary>
/// The constructor sets the minimum passing score
/// </summary>
/// <param name="mps">The minimum passing score.</param>
public PassFailActivity(double mps)
{
minPassingScore = mps;
}

/// <summary>
/// The GetGrade method returns a letter grade determined
/// from the score field. This methos overrides the base class method.
/// </summary>
/// <returns>The letter grade</returns>
public override char GetGrade()
{
char letterGrade;

if (base.GetScore() >= minPassingScore)
letterGrade = 'P';
else
letterGrade = 'F';

return letterGrade;
}
}
}

和 GradedActivity2.cs

using System;

namespace ProtectedMembers
{
public class GradedActivity2
{
protected double score; // Numberic score

/// <summary>
/// The SetScore method sets the score field.
/// </summary>
/// <param name="s">The value to store in score</param>
public void SetScore(double s)
{
score = s;
}

/// <summary>
/// The GetScore method returns the score.
/// </summary>
/// <returns>The value stored in the score field</returns>
public double GetScore()
{
return score;
}

/// <summary>
/// The GetGrade method returns a letter grade determined from the score field.
/// </summary>
/// <returns>Return the letter grade</returns>
public char GetGrade()
{
char letterGrade;

if (score >= 90)
letterGrade = 'A';
else if (score >= 80)
letterGrade = 'B';
else if (score >= 70)
letterGrade = 'C';
else if (score >= 60)
letterGrade = 'D';
else
letterGrade = 'F';

return letterGrade;
}
}
}

和 PassFailExam

using System;

namespace ProtectedMembers
{
public class PassFailExam : PassFailActivity
{
private int numQuestions; // Number of questions
private double pointsEach; // Points for each question
private int numMissed; // Number of questions missed

/// <summary>
/// The constructor sets the number of questions, the number
/// of questions missed, and the minimum passing score.
/// </summary>
/// <param name="questions">The number of questions</param>
/// <param name="missed">The number of questions missed</param>
/// <param name="minPassing">The minimum passing score</param>
public PassFailExam(int questions, int missed, double minPassing) : base(minPassing)
{
// Declare a local variable for the score.
double numericScore;

// Set the numQuestions and numMissed fields.
numQuestions = questions;
numMissed = missed;

// Calculate the points for each questions and the numeric score for this exam.
pointsEach = 100.0 / questions;
numericScore = 100.0 - (missed * pointsEach);

// Call the base class's SetScore method to set the mumeric score.
SetScore(numericScore);
}

/// <summary>
/// The GetpointsEach method returns the number of points each questions is worth
/// </summary>
/// <returns>The value in the pointsEach field</returns>
public double GetPointsEach()
{
return pointsEach;
}

/// <summary>
/// The GetNumMissed method returns the number of questions missed
/// </summary>
/// <returns>The value in the numMissed field</returns>
public int GetNumMissed()
{
return numMissed;
}
}
}

这是我的主要内容

using System;

namespace ProtectedMembers
{
public class PassFailExamDemo
{
public static void Main111()
{
int questions, // Number of questions
missed; // Number of questions missed
double minPassing; // Minmum passing score

// Get the number of questions on the exam
Console.Write("How many questions are " + "on the exam? ");
questions = Convert.ToInt32(Console.ReadLine());

// Get the number of questions missed.
Console.Write("How many questions did " + "the student miss? ");
missed = Convert.ToInt32(Console.ReadLine());

// Get the minimum passing score
Console.Write("What is the minimum " + "passing score? ");
minPassing = Convert.ToInt32(Console.ReadLine());

// Create a PassFailExam project
PassFailExam exam = new PassFailExam(questions, missed, minPassing);

// Display the teset results.
Console.WriteLine("Each questions counts {0} points.",
exam.GetPointsEach());
Console.WriteLine("The exam score is {0} ",
exam.GetScore());
Console.WriteLine("The exam grade is {0} ",
exam.GetGrade());
Console.ReadLine();
}
}
}

输出应该是

How many questions are on the exam? 100
How many questions did the student miss? 25
What is the minimum passing score? 60
Each question counts 1 points.
The exam score is 75
The exam grade is P

我试图使基方法成为虚拟的,并在尝试覆盖它时调用覆盖,这只会给我这个错误“'ProtectedMembers.PassFailActivity.GetGrade()': cannot override inherited member 'ProtectedMembers.GradedActivity2.GetGrade() ' 因为它没有被标记为虚拟的、抽象的或覆盖的”。我完全检查了

最佳答案

一个选项是标记函数virtualGradedActivity2 中:

public virtual char GetGrade()

来自 MSDN:

The virtual keyword is used to modify a method, property, indexer, orevent declaration and allow for it to be overridden in a derivedclass. For example, this method can be overridden by any class thatinherits it:

关于C# 不能覆盖继承的成员,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27500530/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com