Archived

This forum has been archived. Please start a new discussion on GitHub.

No problem in Vc7.0 client and Vc7.0 Server

I found if user define type "A",has a member user define type "B".look like below:
struct enum B
{
a,
b,
c
};

struct A
{
string id;
int n;
B b;
};
at java client ,when I new a A, and don't new A.b.and B is a user define type. I will meet Exception like the thread I posted.