gpt4 book ai didi

oop - 强制派生类调用 MATLAB 中的基函数?

转载 作者:太空宇宙 更新时间:2023-11-03 19:41:01 27 4
gpt4 key购买 nike

基类有一个函数f。派生类覆盖函数 f。我想为派生类的对象调用基类 f。我该怎么做?

这是代码示例。

    classdef base

methods ( Access = public )
function this = f( this )
disp( 'at base::f' );
end

end
end

classdef derived < base

methods ( Access = public )
function this = f( this )
% HERE I WANT TO CALL base::f
this@base.f(); % this is an error

disp( 'at derived::f' );
end

end
end

d = derived();
d.f();
% here the result should be
% at base::f
% at derived::f

最佳答案

代替

this@base.f();

f@base(this)

关于oop - 强制派生类调用 MATLAB 中的基函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7444962/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com