我有一个像这样的构造函数:
C(T x) : base(f(x))
{
...
do something with f(x)
...
}
f(x)
未公开为基类的成员。如果无法修改f(x)
的基数,如何避免两次计算C
?
答案 0 :(得分:4)
您可以使用两个构造函数,例如:
private C(WhateverFReturns x) : base(x)
{
//do something with x
}
public C(T x) : this(f(x))
{
}