3
讓我們直接看看代碼。有兩個類。超類是MATLAB:調用parfor的超類方法
classdef Parent
methods
function this = Parent()
end
function say(this, message)
fprintf('%s\n', message);
end
end
end
的子類是
classdef Child < Parent
methods
function this = Child()
this = [email protected]();
end
function say(this, message)
for i = 1
% This one works...
[email protected](this, message);
end
parfor i = 1
% ... but this one does not.
[email protected](this, message);
end
end
end
end
的問題是:如何使秒迴路工作不引入任何附加的方法?就目前而言,它引發了一個錯誤:「基類方法只能從同名的子類方法中顯式調用」。謝謝。
問候, 伊萬