我有一个包含了使用持久变量的方法的MATLAB类。 当满足某些条件我需要清除持久变量而不清除到该方法所属的对象。 我已经能够做到这一点,但只有通过采用clear functions
这对于我而言过于广泛的范围。
对于这个问题的classdef .m文件:
classdef testMe
properties
keepMe
end
methods
function obj = hasPersistent(obj)
persistent foo
if isempty(foo)
foo = 1;
disp(['set foo: ' num2str(foo)]);
return
end
foo = foo + 1;
disp(['increment foo: ' num2str(foo)]);
end
function obj = resetFoo(obj)
%%%%%%%%%%%%%%%%%%%%%%%%%
% this is unacceptably broad
clear functions
%%%%%%%%%%%%%%%%%%%%%%%%%
obj = obj.hasPersistent;
end
end
end
它采用这一类的脚本:
test = testMe();
test.keepMe = 'Don''t clear me bro';
test = test.hasPersistent;
test = test.hasPersistent;
test = test.hasPersistent;
%% Need to clear the persistent variable foo without clearing test.keepMe
test = test.resetFoo;
%%
test = test.hasPersistent;
test
从这个输出是:
>> testFooClear
set foo: 1
increment foo: 2
increment foo: 3
increment foo: 4
set foo: 1
test =
testMe
Properties:
keepMe: 'Don't clear me bro'
Methods
这是所需的输出。 问题是,该行clear functions
在classdef文件清除内存中的所有功能。 我需要一种方法来清除与一个更小的范围。 例如,如果hasPersistent' was a function instead of a method, the appropriately scoped clear statement would be
明确hasPersistent`。
我知道, clear obj.hasPersistent
和clear testMe.hasPersistent
都无法清除持久变量。 clear obj
同样是一个坏主意。