How can I initialize nested handle class with independent values
Mostrar comentarios más antiguos
Hello, my code is like this:
'ClassA.m'
classdef ClassA < handle
properties
t double = 0
end
end
'ClassB.m'
classdef ClassB < handle
properties
a ClassA = ClassA;
end
end
'TestFun.m'
clear all
test_num = 1e5;
tic
% initialization
class_b(test_num,1) = ClassB;
initialization_a = 0;
if initialization_a % loop assignment of element 'a'
for ii=1:test_num
class_b(ii).a = ClassA;
end
end
toc
% test if each b.a is independent, cause the default value of b.a.t is 0
class_b(1).a.t = 1;
disp(class_b(2).a.t)
Here is the problem description:
Array 'b' (type ClassB,length 1e5) has a member 'a' (type ClassA), they're both handle class.
when initialize 'b', each b.a shares the same value because 'a' is a handle class.
for some reason, i want each b.a have independent value, so i have 2 ways:
1st way is change the classA type as value class,
from "classdef ClassA < handle" to "classdef ClassA"
this will take about 0.15s;
2nd way is enabled loop assignment 'initialization_a = 1' in 'testfun.m'
this will take about 0.70s.
My question is, if i want to use handle class 'a'(2nd way), can i have a faster way to initialize 'a' and have independent b.a value,
the loop assignment seems to be too slow, especially when classA has more member variables.
Thanks a lot.
1 comentario
Paul Vincent
el 24 de Jun. de 2020
Thanks, this question and corresponding answers helped me in clarifying my doubts regarding matlab nested objects.
Respuesta aceptada
Más respuestas (1)
Steven Lord
el 17 de En. de 2020
1 voto
The section titled "Initializing Properties to Handle Objects" on this documentation page states what happens when you initialize a property containing a handle object in the properties block of a class definition. If you want the properties (containing handle objects) of multiple instances of the same class to be independent rather than all being handles to the same object, assign to it in the constructor.
1 comentario
pingping zhang
el 18 de En. de 2020
Categorías
Más información sobre Methods en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!