Convert code built around structure to code built around class

1 回表示 (過去 30 日間)
James Taylor
James Taylor 2021 年 4 月 2 日
回答済み: Brahmadev 2024 年 2 月 14 日
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 Center および File ExchangeConstruct and Work with Object Arrays についてさらに検索

製品


リリース

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by