C で文字列内の文字をループする
文字列の文字を反復処理することは、プログラミングにおける一般的なタスクです。 C でこれを実現するさまざまな方法を次に示します。
範囲ベースの For ループ (C 11 以降)
std::string str = ???; for (char& c : str) { // Perform actions on the character 'c' }
反復子ベースの For ループ
std::string str = ???; for (std::string::iterator it = str.begin(); it != str.end(); ++it) { // Perform actions on the character '*it' }
伝統的な用途Loop
std::string str = ???; for (std::string::size_type i = 0; i < str.size(); ++i) { // Perform actions on the character 'str[i]' }
Null 終端文字配列 Loop
C スタイルの Null 終端文字列の場合は、次を使用します。
char* str = ???; for (char* it = str; *it; ++it) { // Perform actions on the character '*it' }
以上がC 文字列内の文字を反復処理するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。