Is is necessary to use set/get functions?

2 vues (au cours des 30 derniers jours)
TADA
TADA le 12 Fév 2019
Commenté : TADA le 12 Fév 2019
Is it still necessary to use the set/get methods to set/get the properties of UI components?
fig = figure();
fig.Color = 'white';
% works the same as
set(fig, 'Color', 'white');
So is it just for backwards compatibility or what?

Réponse acceptée

Guillaume
Guillaume le 12 Fév 2019
It's not been required since R2014b, where all graphics handles became proper objects. Now, it is just an alternative way of settings the graphics property. set still has a few advantages over a plain property assignment:
  • you can set several properties at once
  • it can be used inside anonymous functions
  5 commentaires
Adam
Adam le 12 Fév 2019
Modifié(e) : Adam le 12 Fév 2019
GUIDE and programmatic GUIs (and even AppDesigner) all have their uses, it's just a case of deciding which tool is best for the job, like an artist deciding what type of pencil to use for a drawing. Programmatic GUIs are like a well and continually sharpened pencil, GUIDE GUIs are like a bit of a blunt pencil that can, nevertheless, get a simple job done faster, and AppDesigner is, well, still being developed and improved so won't always be like a child's crayon hopefully! In my own code I tend to only use set/get now for setting properties on an array of handles, as one of the cases Guillaume points out. I write most of my code in classes so the newer syntax for ui components matches that and is very intuitive for me.
TADA
TADA le 12 Fév 2019
didn't change my mind, but well said nonetheless...
+1 (if it was possible to vote for comments...)

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Migrate GUIDE Apps dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by