您好我有以下代码:
char msg[10000];
string mystr = "hello";
我想将mystr放入msg。有没有办法做到这一点?我尝试了各种各样的方法,但不断得到:
incompatible types in assignment of 'const char*' to char [10000]'
我试过了:
msg = mystr.c_str();
和
msg = (char[10000])mystr;
无济于事。
答案 0 :(得分:4)
您可以尝试std::copy
。类似的东西:
std::copy(mystr.begin(), mystr.end(), msg);
我会在C ++中避免使用C
字符串函数,例如mempcy
和strcpy
。
答案 1 :(得分:2)
看看string::copy - 它需要一个字符串并将其放入数组中。
在你的情况下,它将是:
std::size_t length = mystr.copy(msg,10000);
msg[length]='\0';
答案 2 :(得分:1)
使用std :: string的复制成员函数:
size_t len = mystr.copy(msg, (sizeof msg)-1);
msg[len] = 0;
答案 3 :(得分:1)
char msg[10000];
string mystr = "hello";
strcpy(msg, mystr.c_str());
cout<<msg;
答案 4 :(得分:0)
C中的字符串赋值不同。您必须将字节复制到目标字符串中。
memcpy_s(msg, 1000, mystr.c_str(), mystr.length()) // safe windows version
memcpy(msg, mystr.c_str(), mystr.length()) // unix version
答案 5 :(得分:0)
使用strcpy函数: http://www.cplusplus.com/reference/clibrary/cstring/strncpy/
strncpy(msg, mystr.c_str(), sizeof msg / sizeof msg[0]);
msg[sizeof msg / sizeof msg[0] - 1] = 0; // null-terminate in case of truncation
答案 6 :(得分:0)
编译器有时会为数组类型生成错误的错误消息。
以下是粘贴和编译程序中先前答案的累积。
#include <string>
#include <iostream>
#if 1
int main(int argc, char **argv)
{
using std::cout;
using std::endl;
char msg[1000] = {0}; // initialize to 0 here since we're printing below
// the <type> <array-name>[<size>] = {0} just fills a POD struct or an array with 0s
std::string mystr = "hello";
// if, at some point, you have things changing "mystr"
// you'll need to make sure that it will fit in msg[]
cout << "Before strcpy: \"" << msg << "\"" << endl;
// I'll just finish the statement in mystr...
mystr += " world!";
if(mystr.length() < sizeof(msg)){
strcpy(
msg, // <- put in here until we find a '\0'
mystr.c_str() // <- take from here (which could be a temporary buffer)
);
}
//MSC will complain about strcpy being unsafe
//
// you can use the below instead (if you really feel the need to), which is
// the MS-specific equivalent to the above.
/*
strcpy_s(
msg, // <- put in here until we find a '\0' or the size limit is reached
sizeof(msg), // <- don't put any more than this many chars in msg
mystr.c_str() // <- take from here
);
*/
cout << "After strcpy: \"" << msg << "\"" << endl;
return 0;
}
#else
// Similarly, using wchar_t (a usually non-byte-sized character type)
//
// note where the divisions occurr
int main(int argc, char **argv)
{
using std::wcout;
using std::endl;
wchar_t msg[1000] = {0};
std::wstring mystr = L"hello";
wcout << "Before strcpy: \"" << msg << "\"" << endl;
mystr += L" world";
if(mystr.length() < (sizeof(msg)/sizeof(wchar_t))){
// mystr wil fit!
wcscpy(
msg, // <- put in here until we find a '\0'
mystr.c_str() // <- take from here (which could be a temporary buffer)
);
}
// Similar to the char case in the first preprocessor block
/*
wcscpy_s(
msg, // <- put in here until we find a '\0' or the size limit is reached
sizeof(msg)/sizeof(wchar_t), // <- don't put any more than this many wchar_ts in msg
mystr.c_str() // <- take from here
);
*/
wcout << "After strcpy: \"" << msg << "\"" << endl;
return 0;
}
#endif
我将留给您阅读所有相关功能的文档。