Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我刚刚开始使用 VC++。我正在使用 .NET 4,但我不知道在哪里可以声明全局变量。
这是自动创建的简单代码。我在哪里可以声明变量?
将所有变量放在另一个 .ha 中是个好主意吗?
您可以尝试使用此代码
int g_nX; // global variable void Main() { int nY; // local variable nY // global vars can be seen everywhere in program // so we can change their values here g_nX = 5; } // nY is destroyed here