c++中怎么把string转化为数组
1个回答
展开全部
有很多种方法,在这儿列出两种。
1、因为string可以看作是数组构成的串,所以直接定义一个char的指针,指过去就可以了。
示例如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <windows.h>
#include <stdio.h>
#include <time.h>
#include <iostream>
using namespace std;
int main()
{
string s1 = "abcdeg"; //定义string
const char *k; //定义char指针
k = s1.c_str(); //让指针指向s1的位置
cout << k[0] << endl; //测试输出k指针指向的第一个字符
system("pause"); //暂停一下以便查看
return 0; //标准的返回退出
}
2、比较机械的,先定义一个字符数组,然后将字串的内容“复制”进去。这种方法更规矩一些,也更安全一些:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include <windows.h>
#include <stdio.h>
#include <time.h>
#include <iostream>
using namespace std;
int main()
{
string s = "a1234";
char c[20];
strcpy(c, s.c_str());
cout << c[0] << endl;
system("pause");
return 0;
}
1、因为string可以看作是数组构成的串,所以直接定义一个char的指针,指过去就可以了。
示例如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <windows.h>
#include <stdio.h>
#include <time.h>
#include <iostream>
using namespace std;
int main()
{
string s1 = "abcdeg"; //定义string
const char *k; //定义char指针
k = s1.c_str(); //让指针指向s1的位置
cout << k[0] << endl; //测试输出k指针指向的第一个字符
system("pause"); //暂停一下以便查看
return 0; //标准的返回退出
}
2、比较机械的,先定义一个字符数组,然后将字串的内容“复制”进去。这种方法更规矩一些,也更安全一些:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include <windows.h>
#include <stdio.h>
#include <time.h>
#include <iostream>
using namespace std;
int main()
{
string s = "a1234";
char c[20];
strcpy(c, s.c_str());
cout << c[0] << endl;
system("pause");
return 0;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询