如何避免构造函数中的冗余计算

时间:2019-06-12 08:14:02

标签: c# constructor

我有一个像这样的构造函数:

C(T x) : base(f(x))
{
   ...
   do something with f(x)
   ...
}

f(x)未公开为基类的成员。如果无法修改f(x)的基数,如何避免两次计算C

1 个答案:

答案 0 :(得分:4)

您可以使用两个构造函数,例如:

private C(WhateverFReturns x) : base(x)
{
    //do something with x
}

public C(T x) : this(f(x))
{

}