在C++中,有幾種方法可以遍歷字符串:
std::string str = "Hello World";
for(int i = 0; i < str.length(); i++) {
char c = str[i];
// 對字符c進行操作
}
std::string str = "Hello World";
for(auto it = str.begin(); it != str.end(); ++it) {
char c = *it;
// 對字符c進行操作
}
std::string str = "Hello World";
for(char c : str) {
// 對字符c進行操作
}
無論使用哪種方法,都可以遍歷字符串的每個字符,并對其進行相應(yīng)的操作。