copy a dynamicprops object by value

조회 수: 4 (최근 30일)
Yvan Lengwiler
Yvan Lengwiler 2015년 1월 26일
댓글: Fernando 2023년 11월 2일
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
Fernando
Fernando 2023년 11월 2일
I wish somebody would answer this.

댓글을 달려면 로그인하십시오.

답변 (0개)

카테고리

Help CenterFile Exchange에서 Handle Classes에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by