1.静态结构除了联动还有什么用?
static struct test //THIS ONE
{
int a;
};
2.像这样使用静态有什么用?当我创建它并尝试使用静态成员(通过结构对象)时,它显示“未定义的对 `test::a' 的引用”
struct test
{
static int a; //THIS ONE
};
3、创建静态结构对象有什么用?
struct test{
int a;
};
int main()
{
static test inst; //THIS ONE
return 0;
}