在 C 中,end1 是 std::string 的成員函數,它會傳回一個迭代器,指向字串的結尾,但不包括結尾字元。
在 C 中,end1 表示什麼?
end1 是 std::string 的成員函數,它傳回一個迭代器,指向該字串的結尾,但不包括結尾字元。
詳細解釋:
end1 函數傳回一個指向字串末端處的字元的迭代器。該迭代器位於字串末尾字元的後面,因此不能用來存取字串中的字元。它常用於確定字串的長度,或與其他迭代器(如 begin)一起遍歷字串。
範例:
以下程式碼範例展示如何使用 end1 函數:
<code class="cpp">#include <iostream> #include <string> using namespace std; int main() { string str = "Hello World"; // 获取字符串末尾迭代器 string::iterator it = str.end1(); // 计算字符串长度 cout << "String length: " << distance(str.begin(), it) << endl; return 0; }</code>
輸出:
<code>String length: 11</code>
以上是end1在c++中什麼意思的詳細內容。更多資訊請關注PHP中文網其他相關文章!