假设我有以下类来计算二次方程的解:
classdef MyClass < handle
properties
a
b
c
end
properties (Dependent = true)
x
end
methods
function x = get.x(obj)
discriminant = sqrt(obj.b^2 - 4*obj.a*obj.c);
x(1) = (-obj.b + discriminant)/(2*obj.a);
x(2) = (-obj.b - discriminant)/(2*obj.a);
end
end
end
现在假设我运行以下命令:
>>quadcalc = MyClass;
>>quadcalc.a = 1;
>>quadcalc.b = 4;
>>quadcalc.c = 4;
此时,quadcalc.x = [-2 -2]
。假设我多次调用quadcalc.x
而没有调整其他属性,即每次我要求此属性时quadcalc.x = [-2 -2]
。每次quadcalc.x
重新计算,还是仅仅“记住”[-2 -2]?
答案 0 :(得分:6)
是的,每次都会重新计算x
。这是具有依赖属性的一点,因为它保证x
中的结果始终是最新的。
如果您想让x
成为“懒惰的属性”,您可能需要查看我对this question的回答中的建议。