** c++ string字符串遍历方式 ** s = ‘hahaha’ 迭代器 for(auto it = s.begin(); it != s.end; it++) {} for(auto ch:s) {}