在 C 中使用默认值通过引用传递参数
在 C 中,通过引用传递参数时,无法分配默认值参数的值。当尝试使用引用参数的默认值声明函数时,这会引发错误。例如,以下代码将导致错误:
virtual const ULONG Write(ULONG &State = 0, bool sequence = true);
遇到错误:
error C2440: 'default argument' : cannot convert from 'const int' to 'unsigned long &' A reference that is not to 'const' cannot be bound to a non-lvalue
解决方案
只能使用默认值分配给 const 引用,而不是非常量引用。这是由于 C 的限制,临时值(例如默认值)不能绑定到非常量引用。
作为解决方法,您可以使用实际实例作为默认值:
static int AVAL = 1; void f( int &x = AVAL ) { // stuff } int main() { f(); // equivalent to f(AVAL); }
但是,这种方法的实际适用性有限。
以上是为什么 C 函数不能为非常量引用参数设置默认值?的详细内容。更多信息请关注PHP中文网其他相关文章!