当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ String clear()用法及代码示例


这个函数删除元素,变成一个空字符串。

用法

考虑一个字符串 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 clear()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。