2

嗨,我有以下代码:

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;

无济于事。

4

7 回答 7

6

你可以试试std::copy这个。就像是:

std::copy(mystr.begin(), mystr.end(), msg);

我会避免使用 C++ 中的和之C类的字符串函数。mempcystrcpy

于 2012-07-24T07:17:38.317 回答
3

看一下string::copy - 它需要一个字符串并将其放入数组中。

在您的情况下,它将是:

std::size_t length = mystr.copy(msg,10000);
msg[length]='\0';
于 2012-07-24T07:17:42.357 回答
1

使用 std::string 的复制成员函数:

size_t len = mystr.copy(msg, (sizeof msg)-1);
msg[len] = 0;
于 2012-07-24T07:20:31.860 回答
1
char msg[10000];
string mystr = "hello";

strcpy(msg, mystr.c_str());
cout<<msg;
于 2012-07-24T07:21:06.323 回答
0

C 中的字符串赋值是不同的。您必须将字节复制到目标字符串中。

memcpy_s(msg, 1000, mystr.c_str(), mystr.length()) // safe windows version

memcpy(msg, mystr.c_str(), mystr.length()) // unix version

于 2012-07-24T07:17:06.647 回答
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
于 2012-07-24T07:18:47.407 回答
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

我将留给您阅读有关所有相关功能的文档。

于 2012-07-24T07:41:15.223 回答