在哪里定义内部结构静态对象?好像不能

Where do I define an inner struct static object? It seems I can't

我知道我必须在全局 scope/namespace 中的 class 之外定义一个静态 class 成员,否则编译器会抱怨缺少符号。所以在下面我无法定义内部结构:

struct MyStruct
{
    struct MyInnerStruct
    {
        int notimportant1, notimportant2;
    };
    static MyInnerStruct object1;
};

int main(void)
{
    MyStruct foo;
    foo.object1.notimportant1 = 5;  // Unresolved external symbol, I expected this to happen

    return 0;
}

MyInnerStruct MyStruct::object1;    // Typical definition of a static member
                                    // MyInnerStruct is underlined, saying it's undefined

我也试过上面的前向声明,但是它说了一些关于重新定义的东西。其实我也想知道,这必须重新定义每个

因为全局命名空间中没有MyInnerStruct这个符号,它在MyStruct里面。 IE。你需要做

MyStruct::MyInnerStruct MyStruct::object1;

这与您在 class.

之外定义成员函数的方式非常相似