質問

Why are static variables addressed directly while locals are addressed indirectly? I cannot see where the indirection comes from for locals!

役に立ちましたか?

解決

In languages that allow functions to be used recursively, locals need to be addressed indirectly (via the stack pointer).

C, however, has also static local variables, hence static and local are not necessarily mutually exclusive concepts.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top