这是我的建议:在超类中创建一个名为add_dyn_prop
. 该方法将在子类中调用,而不是像通常那样创建依赖属性。
这个想法是超类继承自dynamicprops
并用于addprop
添加新属性,并根据其名称手动设置其访问器方法。
classdef klass < dynamicprops
methods (Access = protected)
function add_dyn_prop(obj, prop, init_val, isReadOnly)
% input arguments
narginchk(2,4);
if nargin < 3, init_val = []; end
if nargin < 4, isReadOnly = true; end
% create dynamic property
p = addprop(obj, prop);
% set initial value if present
obj.(prop) = init_val;
% define property accessor methods
% NOTE: this has to be a simple function_handle (@fun), not
% an anonymous function (@()..) to avoid infinite recursion
p.GetMethod = @get_method;
p.SetMethod = @set_method;
% nested getter/setter functions with closure
function set_method(obj, val)
if isReadOnly
ME = MException('MATLAB:class:SetProhibited', sprintf(...
'You cannot set the read-only property ''%s'' of %s', ...
prop, class(obj)));
throwAsCaller(ME);
end
obj.(prop) = val;
end
function val = get_method(obj)
val = obj.(prop);
end
end
end
end
现在在子类中,我们不再以通常的方式定义依赖属性,而是在构造函数中使用这个新的继承函数来定义动态属性:
classdef subklass < klass
%properties (Dependent, SetAccess = private)
% name
%end
%methods
% function val = get.name(obj)
% val = 'Amro';
% end
%end
methods
function obj = subklass()
% call superclass constructor
obj = obj@klass();
% define new properties
add_dyn_prop(obj, 'name', 'Amro');
add_dyn_prop(obj, 'age', [], false)
end
end
end
输出:
>> o = subklass
o =
subklass with properties:
age: []
name: 'Amro'
>> o.age = 10
o =
subklass with properties:
age: 10
name: 'Amro'
>> o.name = 'xxx'
You cannot set the read-only property 'name' of subklass.
当然,现在您可以按照最初的意图根据属性名称自定义 getter 方法。
编辑:
根据评论,请在下面找到上面讨论的相同技术的轻微变化。
这个想法是要求子类创建一个属性(在超类中定义为抽象),其中包含要创建的所需动态属性的名称。然后,超类的构造函数将创建指定的动态属性,将它们的访问器方法设置为通用函数(可以根据您的要求根据属性名称自定义它们的行为)。我正在重用add_dyn_prop
我之前提到的相同功能。
在子类中,我们只需要实现继承的抽象dynamic_props
属性,用名称列表初始化(或者{}
如果您不想创建任何动态属性)。例如我们写:
classdef subklass < klass
properties (Access = protected)
dynamic_props = {'name', 'age'}
end
methods
function obj = subklass()
obj = obj@klass();
end
end
end
超类与我们之前的类似,只是现在它有责任add_dyn_prop
在其构造函数中为每个属性名称调用 :
classdef klass < dynamicprops % ConstructOnLoad
properties (Abstract, Access = protected)
dynamic_props
end
methods
function obj = klass()
assert(iscellstr(obj.dynamic_props), ...
'"dynamic_props" must be a cell array of strings.');
for i=1:numel(obj.dynamic_props)
obj.add_dyn_prop(obj.dynamic_props{i}, [], false);
end
end
end
methods (Access = private)
function add_dyn_prop(obj, prop, init_val, isReadOnly)
% input arguments
narginchk(2,4);
if nargin < 3, init_val = []; end
if nargin < 4, isReadOnly = true; end
% create dynamic property
p = addprop(obj, prop);
%p.Transient = true;
% set initial value if present
obj.(prop) = init_val;
% define property accessor methods
p.GetMethod = @get_method;
p.SetMethod = @set_method;
% nested getter/setter functions with closure
function set_method(obj,val)
if isReadOnly
ME = MException('MATLAB:class:SetProhibited', sprintf(...
'You cannot set the read-only property ''%s'' of %s', ...
prop, class(obj)));
throwAsCaller(ME);
end
obj.(prop) = val;
end
function val = get_method(obj)
val = obj.(prop);
end
end
end
end
注意:我没有使用ConstructOnLoad
类属性或Transient
属性属性,因为我仍然不确定它们会如何影响从保存的 MAT 文件加载对象的动态属性。
>> o = subklass
o =
subklass with properties:
age: []
name: []
>> o.name = 'Amro'; o.age = 99
o =
subklass with properties:
age: 99
name: 'Amro'