3

我有一个简单的类结构,如下所示:

classdef super < hgsetget
    properties(Constant = true, Access = private)
        PROP1 = 1;
        PROP2 = {2 [3 4] [5 6]};
    end

    methods
        function self = super()
            // Constructor code here
            // ...
        end
    end
end

然后由像这样的子类继承。

classdef sub < super
    properties
        PROP3 = 7;
    end

    methods
        function self = sub()
            // Subclass constructor here
            // ...
            self = self@super();
            test = self.PROP1; // I don't appear to have access to PROP1 from Super

        end
    end
end

我的问题是当我尝试访问超级财产PROP1PROP2似乎无法访问时:

类 sub 没有合适的方法、属性或字段 PROP1。

有没有办法在 Matlab 中访问超级的属性?

4

2 回答 2

7

在超类super中将属性属性设置为

properties(Constant = true, Access = protected)

文档中,访问属性确定哪些代码可以访问这些属性:

  • public - 不受限制的访问
  • protected - 从类或子类中的方法访问
  • private — 仅通过类方法访问(不从子类访问)
于 2013-03-20T23:43:29.557 回答
2

您将属性定义为private,那些不是继承的。

改为使用Access = protected

于 2013-03-20T23:37:53.513 回答