我对对象中重载函数的默认值有疑问。
如果我有如下的函数签名,默认值是否只评估一次或每次?
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();
我对对象中重载函数的默认值有疑问。
如果我有如下的函数签名,默认值是否只评估一次或每次?
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();