在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
头文件 #include <time.h> //秒 #include <sys/timeb.h> //毫秒 1 std::string GetRandomStr(int len) { 2 //毫秒 3 struct timeb time_seed; 4 ftime(&time_seed); 5 srand(time_seed.time * 1000 + time_seed.millitm); 6 7 //秒 8 //srand(time(0)); 9 10 std::string random_str(""); 11 for (int i = 0; i < len; ++i) { 12 switch (rand() % 3) { 13 case 1: 14 random_str += ('A' + rand() % 26); 15 break; 16 case 2: 17 random_str += ('a' + rand() % 26); 18 break; 19 default: 20 random_str += ('0' + rand() % 10); 21 break; 22 } 23 } 24 25 return random_str; 26 } 27
|
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论