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;
2022-02-09 03:46:41
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;