Is is necessary to use set/get functions?

2 visualizaciones (últimos 30 días)
TADA
TADA el 12 de Feb. de 2019
Comentada: TADA el 12 de Feb. de 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?

Respuesta aceptada

Guillaume
Guillaume el 12 de Feb. de 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 comentarios
Adam
Adam el 12 de Feb. de 2019
Editada: Adam el 12 de Feb. de 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 el 12 de Feb. de 2019
didn't change my mind, but well said nonetheless...
+1 (if it was possible to vote for comments...)

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Migrate GUIDE Apps en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by