MATLAB OOP - calling an object method from within another object method
5 ビュー (過去 30 日間)
古いコメントを表示
i created two objects from two different classes. how do i call one object from within the other?
any advice would be very much appreciated. thanks.
0 件のコメント
採用された回答
Kye Taylor
2012 年 4 月 2 日
Let your two classes be class A and class B. Inside a property block of the class definition file for class A, include a variable, say bObj, that you intend to be an instance of class B. Then, in the constructor of class A, instantiate this instance of class B
bOjb = B(...)
Assuming that method m() of class B is public, invoke it anywhere in class definition file for class A with
bObj.m(...)
3 件のコメント
Walter Roberson
2012 年 4 月 2 日
That's why Kye said "Assuming that method m() of class B is public". If they _are_ public, then just use what Kye showed. If they are not public, you have difficulties.
その他の回答 (1 件)
Hadar
2018 年 3 月 21 日
hi, if class A and B definitions (properties and methods) are in different files (each of them is in its own file), how can class A "see" B and instantiate it? I get an error of undefined.
1 件のコメント
参考
カテゴリ
Help Center および File Exchange で Construct and Work with Object Arrays についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!