📜  C++ string.clear()函数

📅  最后修改于: 2020-10-21 02:08:50             🧑  作者: Mango

C++ string.clear()

该函数删除元素,成为一个空字符串。

句法

考虑一个字符串str。语法为:

str.clear();

参数

该函数不包含任何参数。

返回值

此函数不返回任何值。

让我们看一个简单的clear()函数示例:

#include
using namespace std;
int main()
{
stringstr;
cout<

输出:

Enter some lines about javaTpoint and write dot character to finish the sentence
If you want to clear the text, press d

此示例显示clear()函数的工作方式。