Constructor behaviour in Classes
11 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Sles
el 27 de Sept. de 2017
Respondida: Guillaume
el 27 de Sept. de 2017
Main Question: Is this normal behaviour?
I've encountered some strange behaviour when initilizing properties of classes (child of handle):
Note: example test-script in zip-file (attachement)
classdef pokemon< handle % baseClass
%POKEMON container
% dummy example
properties
moves = Moves() ; %Moves is also a (custom) class (child from handle)
level;
end
methods
function obj = pokemon(obj)
% obj.moves = Moves(); % if the property is initialized here, it
% works likes excepted.
end
function getname(obj)
% does nothing
end
end
end
When a property is initilized in the 'properties' section:
A= Pokemon; B = Pokemon;
The handle of A.moves and B.moves is the same. ( change A.moves, B.moves also changes)
If the property is initilized in the constructor (like I would normaly do), A.moves and B.moves are two different objects.
Sub-Question: Why does it behaves differently?
0 comentarios
Respuesta aceptada
Guillaume
el 27 de Sept. de 2017
This is normal behaviour and 'documented' (but extremely hard to find in the doc even when you what you're looking for!)
Basically, all initialisations in a property section is done only once, when the class is loaded (i.e first use). After that the initialisation value is shared by all instances. It only matters when the initialised property is a handle class, and indeed for these you must initialise the property in the constructor.
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Structures en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!