Why is calling constructor from class above package allowed?
1 次查看(过去 30 天)
显示 更早的评论
I just noticed that I can call a constructor from an instance of a class that is situated just above the package that the class is in. I haven't done too much testing to fully flush this out but here is a rough example setup which I believes mimics my case.
For example, in my limited testing the following works, assuming the given folder structure:
- /root/@class1
- /root/+class1/@class2
x = class1;
x.class2 %calls the constructor of class2.
Is this a bug or a feature? I would expect that this would be a call to a method or property of the instantiated object class1, which if not present, would throw an error.
Thanks, Jim
0 个评论
采纳的回答
Jennifer Black
2013-1-16
Hi Jim,
In your example code you have both a class and a package with the same name ("class1") in the same directory. Given an instance of class1, and a method name that isn’t defined for that class, MATLAB is currently finding the function scoped to the package of the same name as the class of the instance. We consider this behavior a bug that will be removed in a future release. Please don’t rely on this behavior.
Thanks,
-Jennifer
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Other Formats 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!