Does matlab create pointers to objects or create new copies?
8 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Evan Voyles
le 29 Mai 2020
Commenté : Evan Voyles
le 29 Mai 2020
I'm building a simple grid simulation, where my class contains . I want each to be able to keep track of which grid it is in, but I don't want to create 10,000 copies of the same for a 100 x 100 grid. Consider the following made up of
myGrid = cgrid(30, 20)
myGrid =
cgrid with properties:
grid: {30×20 cell}
M: 30
N: 20
Now suppose I want each cell to know which grid it is in, so I can write functions for that extract useful information from the grid (i.e., findNeighbors)
%Snippet of cgrid constructor, modified for clarity
for ii = 1:myGrid.M
for jj = 1:myGrid.N
obj.grid{ii, jj} = ccell(ii, jj); %Creates a ccell object and stores it at the location {ii, jj}
obj.grid{ii, jj}.home = myGrid.grid %Tells the ccell object where it lives
end
end
Does this second line of the nested for loop create 600 copies of myGrid? Or does it just point to where myGrid is stored?
Because if I were to take any cell and modify its home, that wouldn't affect my original object of myGrid. It would seem so wasteful for a new object to be created everytime, but I know that somewhere somehow, obj.grid{1,2}.home is NOT the same object as myGrid.grid
0 commentaires
Réponse acceptée
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Entering Commands 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!