65,206
社区成员
发帖
与我相关
我的任务
分享struct handle_service
{
char xcode[64];
std::list<int> wait;
};
int main(int argc, char **argv)
{
struct handle_service *handle = (struct handle_service *)calloc(1, sizeof(*handle));
if(NULL != handle)
{
printf("%ld\n", handle->wait.size());
}
return 0;
}