C++ 类内结构体调用
确保类的结构体是公用的
class Outer
{
public:
struct Inner
{
int x, y;
};
};
int main()
{
Outer::Inner obj;
return 0;
}
确保类的结构体是公用的
class Outer
{
public:
struct Inner
{
int x, y;
};
};
int main()
{
Outer::Inner obj;
return 0;
}