strlen返回的是size_t数据转化为short可能溢出

void test()

{

 short len=strlen("12345");  //  size_t to short

}