1.strlen(字符串的长度)
size_t Strlen(const char* str) { assert(str); for (size_t i = 0;; ++i) { if (str[i] == '