Rand in the constructor of a class and createArray
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I'm attempting to use createArray to create an array of a class. The class constructor sets a property using rand. When I use createArray, every object in the array gets the same value of that property. Is there a workaround?
0 commentaires
Réponses (2)
Andres Adam
le 15 Juil 2024
Modifié(e) : Walter Roberson
le 15 Juil 2024
It seems that createArray is not creating a new object for each element, but rather creating one and copying on the rest of the elements.
Maybe a workaround is to specify a copy method for your class, so the property changes with rand even when it is copied. Have you tried that?
0 commentaires
Walter Roberson
le 15 Juil 2024
When you have static properties of the class, then the value that is assigned when the class is loaded is used for all subsequent members of the class. To change the value, you need to clear the class.
In short... you should not have assigned a per-instance property at the class level.
0 commentaires
Voir également
Catégories
En savoir plus sur Construct and Work with Object Arrays 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!