Nested Functions versus Global Variables

조회 수: 6 (최근 30일)
Catalytic
Catalytic 2019년 6월 8일
댓글: Catalytic 2019년 6월 10일
Why are nested functions better for sharing variables between workspaces than global variables? There doesn't seem to be much difference in the way the sharing works. The closest thing to an explanation I've found was the highlighted portion of the Matlab documention below, but I don't know what it means. What does it mean that globals "do not allow names to be reused"? And how then do nested functions allow names to be reused, by contrast?

채택된 답변

Stephen23
Stephen23 2019년 6월 8일
편집: Stephen23 2019년 6월 8일
"Why are nested functions better for sharing variables between workspaces than global variables?"
Nested functions provide much better control over where those variables can be accessed from. This is huge benefit from a code design perspective, because it makes code easier to understand and debug. They are also more efficient:
"There doesn't seem to be much difference in the way the sharing works"
At first glance they might seem similar, but nested functions are more efficient because MATLAB does not need to search the entire global workspaces to identify that variable, which slows code down: "global variables can decrease performance of your MATLAB code."
"What does it mean that globals "do not allow names to be reused"? And how then do nested functions allow names to be reused, by contrast?"
I find that statement ambiguous, nor do I see a big difference in terms of variable name "re-use". Perhaps some other users can help with this.
  댓글 수: 1
Catalytic
Catalytic 2019년 6월 10일
Great. Thank you. I'm starting to think the variable name re-use bit was talking about anonymous functions.

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

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by