这是一个 C++ 程序,用于将字符串转换为 C++ 中的字符数组。这可以通过多种方式完成:
Begin Assign value to string m. For i = 0 to sizeof(m) Print the char array. End
#include<iostream> #include<string.h> using namespace std; int main() { char m[] = "Nhooo"; string str; int i; for(i=0;i<sizeof(m);i++) { str[i] = m[i]; cout<<str[i]; } return 0; }
我们可以简单地调用strcpy()函数将字符串复制到字符数组。
Begin Assign value to string s. Copying the contents of the string to char array using strcpy(). End
#include <iostream> #include <string> #include <cstring> using namespace std; int main() { string str = "Nhooo"; char c[str.size() + 1]; strcpy(c, str.c_str()); cout << c << '\n'; return 0; }
Nhooo
我们可以避免使用strcpy()基本上在c中使用的
std::string::copy instead.
Begin Assign value to string s. copying the contents of the string to char array using copy(). End
#include <iostream> #include <string> using namespace std; int main() { string str = "Nhooo"; char c[str.size() + 1]; str.copy(c, str.size() + 1); c[str.size()] = '\0'; cout << c << '\n'; return 0; }
Nhooo