using global variables to avoid passing by value
조회 수: 5 (최근 30일)
이전 댓글 표시
It is often heard that using global variables is a bad practice.
However, personally, I often declare some variable as global to avoid passing its value to a function call.
My concern is, the function is to be called many many times, and if each time the variable which is a big chuck of data is to be passed by value to the function, it would take a lot of time for copying the data.
Therefore, is using global variable really a bad idea in this circumstance?
BTW, the global variable is not changed by the function in my case.
댓글 수: 0
채택된 답변
John D'Errico
2024년 4월 6일
편집: John D'Errico
2024년 4월 6일
Sorry. I'll call it a bad idea, generated because you erroneously think you are doing something good.
MATLAB does not actually copy the data if it is not changed when you pass it into a function. I know, you don't believe me.
global A
A = rand(20000);
timeit(@() test1(A))
timeit(@() test2)
timeit(@() test3(A))
function y = test1(A)
y = sum(A); % uses A, but does not change it
end
function y = test2()
global A % global pass
y = sum(A);
end
function y = test3(A)
A(1,1) = 2; % changing one element of A now forces a copy.
y = sum(A);
end
In this example, it seems passing in the array took slightly LESS time than by passing it as global. When I changed one element of A inside the function, now MATLAB was forced to copy the array. So as you can see, passing it in as global gained you nothing.
Skip the globals. They just make your code worse in many ways.
댓글 수: 0
추가 답변 (1개)
alelap
2024년 4월 6일
I agree with Jonh D'Errico's answer.
MATLAB uses a so called "copy-on-write" mechanism that is exactly designed to tackle such a circumstance:
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Performance and Memory에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!