1、创建新项目 - Windows桌面向导
2、选择桌面应用程序
3、创建global.h 和 global.cpp
global.h
#pragma once
extern int test;
class global
{
};
global.cpp
#include "global.h"
int test = 0;
标签:桌面,文件共享,int,global,C++,cpp,test,多线程
来源: https://blog.csdn.net/yixiao0307/article/details/122636284