Student_info *pstu = Hash_get("key2");
if (pstu == NULL)
{
printf("ERROR:Get NULL\n");
}
else
{
printf("name:%s\nage:%d\n",pstu->name.c_str(),pstu->age);
}
printf("end~\n");
delete[] buff;
return 0;
}
如有任何问题,希望各位指正,谢谢。