在 C 中使用成员变量作为默认参数
在 C 中,可以使用成员为成员函数指定默认参数多变的。但是,尝试使用成员函数作为默认参数可能会导致编译器错误,如下例所示。
class Object { protected: Point initPos; Point currPos; void MoveTo(double speed, Point position = initPos); }; void Object::MoveTo(double speed, Point position) { currPos = postion; }
此代码将遇到以下编译错误:
error: invalid use of non-static data member 'Object::initPos'
错误原因
成员函数中的默认参数表达式仅限于使用类内或全局范围内的元素。这里,在调用函数时,编译器无法确定 initPos 成员变量的值,从而导致错误。
解决方案
要解决此问题,请使用 function使用以下方法重载:
// Single-argument overload that defaults to initPos void Object::MoveTo(double speed) { MoveTo(speed, initPos); } // Two-argument overload that takes the explicit position void Object::MoveTo(double speed, Point position) { // Implementation here }
优点
此技术允许在成员函数中进行可选参数处理,同时维护单个方法中的实现。它遵循 DRY(不要重复自己)原则,避免代码重复,同时提供指定默认值的便捷方法。
以上是为什么成员变量不能用作 C 成员函数中的默认参数?的详细内容。更多信息请关注PHP中文网其他相关文章!