huangblue / c

0 stars 0 forks source link

static 与 extern #52

Open huangblue opened 7 years ago

huangblue commented 7 years ago

在访问权上,两者是对立的。

extern允许其它文件访问 static不允许其它文件访问 对变量和函数都是这样的。 而且,默认是extern的,就是一个变量或者函数,如果定义时(变量定义成全局变量)没有加extern和static,则认为是extern(变量没有加extern,可以不赋初值)。