使用string类注意的地方

使用string类注意的地方
1. 注意开头要把string类和命名空间加进去:
#include <string>
using namespace std;
std是标准程序库所驻的命名空间名称。像string类和iostream类都在这个命名空间里。

2. string class中使用erase( ),而不是delete( )来表示 删去一个字符。

你可能感兴趣的:(使用string类注意的地方)