gpt4 book ai didi

oop - 如何让抽象的依赖属性起作用

转载 作者:太空宇宙 更新时间:2023-11-03 20:07:38 24 4
gpt4 key购买 nike

我想在这样的抽象类中定义一个带有属性的接口(interface)

classdef A
properties (Abstract = true)
Valid;
end
end

像这样实现这个接口(interface)

classdef B < A
properties (Dependent = true)
Valid;
end
methods
function v = get.Valid(obj)
v = 1;
end
end
end

但是当我尝试创建 B 的实例时,出现以下错误

>> c = B()
??? Error using ==> B
The property 'Valid' restriction defined in class 'B' must match the property definition in base class 'B'.

谁能告诉我我做错了什么?

最佳答案

也尝试在基类中设置 Dependent 属性:

classdef A
properties (Abstract = true, Dependent = true)
Valid;
end
end

根据documentation :

Concrete subclasses must redefine abstract properties without the Abstract attribute set to true

按照我的理解,子类属性属性必须与基类匹配(没有 Abstract 属性)

关于oop - 如何让抽象的依赖属性起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11853073/

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