我正在编写一个类定义,当设置了某些属性时,它使用侦听器来修改对象。像这样:
classdef MyObject < handle
properties (SetObservable)
orientation = 'h'; % h = horizontal, v = vertical, o = other
length
width
end
methods
% Constructor
function mo = MyObject(o)
mo.orientation = o;
addlistener(mo, 'orientation', 'PreSet', @mo.changeOrientation);
end
% Change Orientation Listener
function changeOrientation(mo, src, evnt)
celldisp(src);
celldisp(evnt);
% I want a way to access newor here
if mo.orientation == 'h' && newor == 'o'
tempw = mo.width
mo.width = mo.length
mo.length = tempw;
end
end
% Setter
function set.orientation(mo, newor)
mo.orientation = newor;
end
end
end
我希望在设置方向时能够使用变量newor。如何将新的方向变量传递给changeOrientation方法?
我想避免将changeOrientation
的内容移动到set.orientation
方法中,因为Matlab抱怨属性(长度和宽度(可能没有初始化。
编辑长度不取决于方向。当方向改变时,我只需要交换长度和宽度。在其他情况下,用户应该能够将长度或宽度设置为任何正值。
您不能这样做,因为PreSet侦听器只是侦听器。传递给侦听器回调的数据永远不会返回到对象,在侦听器中修改其值也不会产生影响。
使用PreSet侦听器的目的是在更改之前获取属性的值,而不是在实际分配值之前修改任何值。
在您发布的代码中,我可能只是在您类的set.orientation
方法中对方向进行任何验证/修改。
function updateLength(mo)
% Change mo.length here and others based on mo.orientation
end
function set.orientation(mo, newor)
% validate newor
if dovalidation(newor)
mo.orientation = newor;
else
error('invalid!');
end
% Now trigger a "callback"
mo.updateDependentVariables()
end
编辑
根据您的意见,最好的方法可能是使length
具有一个阴影属性length_
,该属性包含用户分配给length
的值。当用户请求length
的值时,它可以返回此存储值(如果方向=="v"(或width
(如果方向==="h"(
classdef MyObject
properties (Dependent)
length % Can be either `width_` or `length_`
width % Can be either `width_` or `length_`
end
properties
orientation
end
properties (Access = 'protected')
length_ = 12
width_ = 10
end
methods
function mo = MyObject(o)
mo.orientation = o;
end
function set.orientation(mo, newor)
% If the user supplies an "o" flip the orientation
if strcmpi(newor, 'o')
if strcmpi(mo.orientation, 'v')
newor = 'h';
else
newor = 'v';
end
end
mo.orientation = newor;
end
function set.length(mo, value)
if strcmpi(mo.orientation, 'h')
self.length_ = value;
else
self.width_ = value;
end
end
function set.width(mo, value)
if strcmpi(mo.orientation, 'h')
self.width_ = value;
else
self.length_ = value;
end
end
function res = get.width(mo)
switch lower(mo.orientation)
case 'h'
res = mo.width_;
case 'v'
res = mo.length_;
otherwise
error('Invalid orientation');
end
end
function res = get.length(mo)
switch lower(mo.orientation)
case 'h'
res = mo.length_;
case 'v'
res = mo.width_;
otherwise
error('Invalid orientation');
end
end
end
end
这样,在更改方向时就不必显式更新length
。
顺便说一句,我不想使用length
作为属性,因为这与内置函数length
有点混淆。
您不需要额外的侦听器。这就是自定义setter/getter方法的用途。在您的示例中使用set.orientation
方法是没有意义的,它除了无论如何都会发生的赋值之外什么都不做。相反,使用此方法对changeOrientation
:进行额外调用
classdef MyObject < handle
properties (SetObservable)
orientation = 'h'; % h = horizontal, v = vertical
end
methods
% Constructor
function mo = MyObject(o)
mo.orientation = o;
end
% Change Orientation Listener
function changeOrientation(mo, newor)
% Use newor here!
end
% Setter
function set.orientation(mo, newor)
mo.changeOrientation(newor);
mo.orientation = newor;
end
end
end