Effacer les filtres
Effacer les filtres

Convert code built around structure to code built around class

2 vues (au cours des 30 derniers jours)
James Taylor
James Taylor le 2 Avr 2021
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?

Réponses (1)

Brahmadev
Brahmadev le 14 Fév 2024
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!

Catégories

En savoir plus sur Construct and Work with Object Arrays dans Help Center et File Exchange

Produits


Version

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by