Does matlab create pointers to objects or create new copies?

조회 수: 13 (최근 30일)
Evan Voyles
Evan Voyles 2020년 5월 29일
댓글: Evan Voyles 2020년 5월 29일
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

채택된 답변

per isakson
per isakson 2020년 5월 29일
  댓글 수: 1
Evan Voyles
Evan Voyles 2020년 5월 29일
Awesome, exactly the information I was looking for but just couldn't figure out what to search for. Thanks, mate.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 MATLAB Runtime에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by