12

我对对象中重载函数的默认值有疑问。

如果我有如下的函数签名,默认值是否只评估一次或每次?

class X
{
  public:
  f(const RWDate& d=RWDate::now());
}

// when calling f() do I get the current time each time?
X z;
z.f();

// is the default value of d recaculated in the function call?
z.f();
4

1 回答 1

18

默认参数在调用站点被替换,因此z.f()被转换为

z.f(RWDate::now())

因此,每次调用函数并使用默认参数时都会评估默认参数。

于 2011-04-14T21:26:32.080 回答