标签: c++ static identifier non-static
我需要一个例子来详细说明C ++中内部链接和外部链接之间的区别。
“静态将变量的范围限制为相同的翻译单元。 静态全局变量具有内部链接。 非静态全局变量具有外部链接。“ - What is the difference between static global and non-static global identifier in C++?