copy a dynamicprops object by value

3 vues (au cours des 30 derniers jours)
Yvan Lengwiler
Yvan Lengwiler le 26 Jan 2015
Commenté : Fernando le 2 Nov 2023
I've created a class that is a subclass of dynamicprops,
classdef myclass < dynamicprops
When I create an instance of this
c = myclass
and then copy this
d = c
then d and c refer to the same underlying object. Therefore, whenever I change a property of c, the corresponding property of d changes as well (because c and d really refer to the same thing).
Question 1. How can I make a "real" independent copy of c?
Question 2. Alternatively, can I adapt the class definition so that it will be copied "by value" and not "by reference" ?
Thanks for your help.
  1 commentaire
Fernando
Fernando le 2 Nov 2023
I wish somebody would answer this.

Connectez-vous pour commenter.

Réponses (0)

Catégories

En savoir plus sur Handle Classes 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