c#中当定义c#定义一个抽象函数,如果其重载函数需要录入参数应该怎么处理

比如,我需要引入一个参数R应该怎么办

class cicle : shope
{
public double arca(double r) //这个是重载,无须override
{
throw new NotImplementedException();
}
public override double arca() // 无参数函数必须重写
{
throw new NotImplementedException();
}
}
重写与重载不同,重写是覆盖掉同名函数,重载是添加一个同名且不同参数的函数。
温馨提示:内容为网友见解,仅供参考
无其他回答
相似回答