1、在公共头文件includes.h(新建的)中:
struct _Teststruct{
int a;
int b
};
extern _Teststruct teststruct;
2、在mainwindow.h中
struct _Teststruct teststruct;
3、在mainwindow.cpp中使用
本文共 210 字,大约阅读时间需要 1 分钟。
1、在公共头文件includes.h(新建的)中:
struct _Teststruct{
int a;
int b
};
extern _Teststruct teststruct;
2、在mainwindow.h中
struct _Teststruct teststruct;
3、在mainwindow.cpp中使用
转载于:https://www.cnblogs.com/judes/p/7359772.html