c++如何清空string类型的变量
时间: 2024-10-05 17:00:36 浏览: 28
ISO C++基本类型和变量
在C++中,要清空`std::string`类型的变量,可以使用`clear()`成员函数。这个函数会将字符串中的所有字符设置为空字符('\0'),使其长度变为0。这里是操作的例子:
```cpp
#include <iostream>
#include <string>
int main() {
std::string myString = "Hello, World!";
// 清空字符串
myString.clear();
// 打印清除后的字符串,现在长度为0,内容为空
if (myString.empty()) {
std::cout << "The string is now empty.\n";
} else {
std::cout << "The string is not empty after clearing: " << myString << "\n"; // 这里不会打印,因为myString确实已空
}
return 0;
}
```
阅读全文