Editor code completion for MATLAB Handle classes?

When working with the definition for a handle class. Can the code completion feature see the methods and properties of the class?
classdef A < handle
properties
a;
b;
end
methods
function obj = A()
obj.b = 1; %Code Editor does not see the property b when I type in the period after obj.
end
end
end
Code Editor does not see the property b when I type in the period after obj.

 Respuesta aceptada

per isakson
per isakson el 20 de Dic. de 2014
Editada: per isakson el 20 de Dic. de 2014
I'm not sure what's in the documentation. I use R2013a and the code below. I work in "break mode", similar to In-situ Coding.
In "break mode" code completion works both with constructors and ordinary methods.
classdef A < handle
properties
a
b
end
methods
function obj = A()
end
function foo( obj )
end
end
end
&nbsp
&nbsp

4 comentarios

Matt J
Matt J el 20 de Dic. de 2014
Editada: Matt J el 20 de Dic. de 2014
Doesn't work for me in R2013b. Maybe it requires a preference setting of some sort? Also, I don't understand the 3rd example involving foo() and what distinguishes it from the 1st example, also involving foo(). And how was break mode reached in the 3rd example?
John
John el 20 de Dic. de 2014
Matt J, in the 3rd example, code is not being debugged. I am able to get this working in 2014a.
John
John el 20 de Dic. de 2014
I'll keep this thread open for a little while and let other suggestions be posted. If I see no better suggestions than the one by per isakson , I will accept his answer. It seems to be a good solution.
per isakson
per isakson el 20 de Dic. de 2014
  • Yes, it requires a preference setting (see below).
  • Yes, the "No Completion" in the third example is because not in "break mode"; no breakpoint and no little green arrow.
A problem to provide Tab Completion when the variables are not defined, i.e. based on the text, is that there are syntax errors most of the time when the code is being written.
I've problems with the words, that's why I use so few. In the documentation I find the terms
  • Tab completion not "Code completion"
  • Debugging session I wrote "break mode"&nbsp

Iniciar sesión para comentar.

Más respuestas (1)

Matt J
Matt J el 20 de Dic. de 2014
Editada: Matt J el 20 de Dic. de 2014

0 votos

Inside most class methods, the editor would have no way of knowing in advance that "obj" is intended to be an object of the class. The constructor is an exception, because a class member is the only legal output argument of class constructors. But I can imagine the editor developers simply not investing in special treatment for constructors, when it's a convenience that can't be given anywhere else.

Categorías

Más información sobre Entering Commands en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 20 de Dic. de 2014

Comentada:

el 20 de Dic. de 2014

Community Treasure Hunt

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

Start Hunting!

Translated by