Write class methods outside the class file

50 次查看(过去 30 天)
I have a very large MATLAB class with a lot of methods and I would like to organize them to facilitate the source code maintenance.
So I was thinking to put each Class method in your own MATLAB file, like a pure function and then call the function inside the Class method like this:
classdef my_class < handle
properties
big_data
end
methods
function [] = my_method1(obj, param1)
% Here I call the pure function:
my_function1(obj.big_data, param1)
end
function [] = my_method2(obj, param1, param2)
% Here I call the pure function:
my_function2(obj.big_data, param1, param2)
end
end
So I will have 2 other files:
  • my_function1.m
  • my_function2.m
My question is:
Doing in that way, when I call the pure function MATLAB will pass the obj.big_data by reference or by value?
Inside these pure functions I'm not modifying the big_data property. This is read-only property.

采纳的回答

Steven Lord
Steven Lord 2019-9-16
Rather than defining the class methods in the classdef file to call a separate function, I'd just define them in a separate file in a class folder as shown on this documentation page.
Note that there are some methods that must be defined in the classdef file itself as stated in the last section on that page. The most common and important of those is the class constructor.
This other documentation page may also be of interest to you.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Whos 的更多信息

标签

产品


版本

R2018b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by