代码如下:
1 #ifndef STRING_H 2 #define STRING_H 3 4 #include <cassert> 5 #include <utility> 6 #include <iostream> 7 8 namespace jz 9 { 10 11 /************************************************************************/ 12 /* 重新实现C风格字符串处理函数 */ 13 /************************************************************************/ 14 15 //求C风格字符串长度 16 size_t StrLen(const char *str) 17 { 18 assert(str != nullptr); 19 size_t len = 0; 20 while (*str++ != '