#include "stdafx.h"
#include <iostream>
using namespace std;
class B
{
public:
B(){};
~B(){};
void Bp();
};
class A
{
public:
A(){};
~A(){};
B i;
static B* x;
void Aa();
};
void A::Aa()
{
i.Bp();
}
void B::Bp()
{
cout << "hello" << endl;
}
B ccc;
B* A::x = &ccc;
int _tmain(int argc, _TCHAR* argv[])
{
ccc.Bp();
while(1);
return 0;
}