65,211
社区成员
发帖
与我相关
我的任务
分享#include "stdafx.h"
#include <iostream>
#include <assert.h>
using namespace std;
#include <iostream>
using namespace std;
struct A
{
int age;
B *pB;
};
struct B
{
int score;
A *pA;
};
void main()
{
}
struct B;使用B之前要先声明
struct A
{
int age;
B *pB;
};
struct B
{
int score;
A *pA;
};
void main()
{
}
struct B;
struct A
{
int age;
B *pB;
};
struct B
{
int score;
A *pA;
};