Convert code built around structure to code built around class

1 次查看(过去 30 天)
What must I keep in mind if I want an entire repository built around creating, manipulating, and writing structure arrays to files converted to a repository which defines a class and methods?
I've noticed that checking for field existence is no longer helpful. Is there a checklist for this kind of thing anywhere? Or do people recommend that I build again from the ground up?

回答(1 个)

Brahmadev
Brahmadev 2024-2-14
Converting a codebase that uses structures to one that uses classes involves several considerations. If the codebase is small enough, I would recommend using building the class from ground up and resuing code for functions wherever possible. Here's a checklist and some tips to help you with the transition:
  1. Determine the attributes (formerly fields in structures) for each class.
  2. Decide on the methods (functions) that will operate on the objects of these classes.
  3. Ensure that the class attributes are private or protected if necessary, to enforce encapsulation.
  4. Provide public getters and setters if external access to these attributes is required.
  5. Implement constructors to initialize object attributes and replace any setup code that was previously used with structures.
  6. Convert functions that manipulate structures into methods within the appropriate class.
A few other things can be considered such as adding error handling for class methods, testing the setters and getters, and updating the dependency properly.
Hope this helps in getting you started!

类别

Help CenterFile Exchange 中查找有关 Data Type Conversion 的更多信息

产品


版本

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by