這個函數刪除元素,變成一個空字符串。
用法
考慮一個字符串 str。語法是:
str.clear();
參數
該函數不包含任何參數。
返回值
此函數不返回任何值。
示例
我們來看一個簡單的 clear() 函數示例:
#include<iostream>
using namespace std;
int main()
{
stringstr;
cout<<?Enter some lines about javaTpoint and write dot character to finish the sentence?<<?\n?;
cout<<?If you want to clear the text, press d?<<?\n?;
do{
charch =cin.get();
str+=ch;
if(ch==?d?)
str.clear();
}while(ch!=?.?);
return 0;
}
輸出:
Enter some lines about javaTpoint and write dot character to finish the sentence If you want to clear the text, press d
此示例顯示 clear() 函數的工作原理。
相關用法
- C++ String crend()用法及代碼示例
- C++ String compare()用法及代碼示例
- C++ String cend()用法及代碼示例
- C++ String c_str()用法及代碼示例
- C++ String crbegin()用法及代碼示例
- C++ String cbegin()用法及代碼示例
- C++ String copy()用法及代碼示例
- C++ String capacity()用法及代碼示例
- C++ String swap()用法及代碼示例
- C++ String back()用法及代碼示例
- C++ String append()用法及代碼示例
- C++ String Assign()用法及代碼示例
- C++ String begin()用法及代碼示例
- C++ String size()用法及代碼示例
- C++ String resize()用法及代碼示例
- C++ String Find()用法及代碼示例
- C++ String empty()用法及代碼示例
- C++ String replace()用法及代碼示例
- C++ String at()用法及代碼示例
- C++ String insert()用法及代碼示例
注:本文由純淨天空篩選整理自 C++ String clear()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。