Questions tagged «global»

指可以从任何范围访问变量和其他项目的空间。

5
静态与全局
如果我有一个如下所示的C文件,i和之间有什么区别j? #include <stdio.h> #include <stdlib.h> static int i; int j; int main () { //Some implementation }
74 c  static  global 

8
在Python中使用globals()的原因?
在Python中具有globals()函数的原因是什么?它只返回已经是全局变量的全局变量字典,因此它们可以在任何地方使用...我只是出于好奇而问,试图学习python。 def F(): global x x = 1 def G(): print(globals()["x"]) #will return value of global 'x', which is 1 def H(): print(x) #will also return value of global 'x', which, also, is 1 F() G() H() 我真的看不到这里的意义吗?只有在我需要局部变量和全局变量时,才需要使用同一个名称 def F(): global x x = 1 def G(): x = 5 …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.