0

我正要在一个类中初始化一个 char 数组

class a{
    char a[25];
};

a::a(){
    a[] = {'a','b','c'};
}

但给出编译时错误。

4

2 回答 2

4

如果你的编译器支持 C++11 特性,你可以这样做:

a::a() :arr({'a','b','c'})
{}

否则,您必须手动完成,或者您可以使用以下功能memcpy

a::a() {
    memcpy(arr,"abc",3);
    // The other initialization method will fill the rest in with 0,
    // I don't know if that's important, but:
    std::fill(arr + 3, arr + 25, '\0');
}

或者,正如 ehemient 所建议的:

a::a() {
    strncpy(arr, "abc", 25);
}
于 2012-07-25T06:32:37.627 回答
1
class LexerP
{   
public:
    char header[5];
    void h();
    void echo(){printf(" salut les gars ...\n \n");};   
};


void LexerP::h()
{
    int i=0;
    int j=0;

    char headM[5] ={0x07,0x0A,0x05,0x00,0x05};
    /*  for (i=0;i<strlen(this->header);i++)
    header[i]=headM[i];*/
    strcpy(this->header,headM)
};



main()
{
    LexerP *M=new (LexerP);
    M->echo();
    M->h();
    return 0;
}
于 2015-09-03T13:30:22.660 回答