我说的字符串不是C++的STL,是C语言的字符数组
(1)循环方法
1 2 3 | char a[ ]="aaaaaaaa"; //定义字符数组 for (unsigned int i = 0; i < strlen(a); i++) a[i] = '\0' ; //for循环清空数组 |
(2) memset函数方法
memset包含在头文件string.h中,函数原型为:memset(void *s,int ch,size_t n)。
1 2 | char a[ ]="aaaaaaaa"; //定义字符数组 memset(a, 0, sizeof a); //清空数组 |
(3)strcpy
直接使用strcpy将一个空串赋值给字符串就可以,需要string.h
1 2 3 | char ss[11] = {"hello world"}; //当前为hello world strcpy(ss, ""); //现在的ss就是空串了 |