C
cwj528
Unregistered / Unconfirmed
GUEST, unregistred user!
typedef struct AAA{
int memb[2];
} AAA_1;
static const AAA_1 bbb[4] =
{ {2, 5},
{4, 5},
{2, 7},
{4, 8},
};
与上述VC++代码对等的Delphi代码如何写?
int memb[2];
} AAA_1;
static const AAA_1 bbb[4] =
{ {2, 5},
{4, 5},
{2, 7},
{4, 8},
};
与上述VC++代码对等的Delphi代码如何写?