c++中怎么把string转化为数组

  1. 因为string可以看作是数组构成的串,所以直接定义一个char的指针,指过去就可以了。
    示例如下:
#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;  //标准的返回退出
 
}
  1. 比较机械的,先定义一个字符数组,然后将字串的内容“复制”进去。这种方法更规矩一些,也更安全一些:
#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());  //trcpy()函数的作用是将指定的字符串进行拷贝,该函数无法拷贝string对象,只能拷贝string对象的c_str()函数返回的字符串
 
    cout << c[0] << endl;
 
    system("pause");
    return 0;
 
}

猜你喜欢

转载自blog.csdn.net/weixin_46353366/article/details/115387539
今日推荐