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