构造函数中的类错误

classes error at constructor

本文关键字:错误 构造函数      更新时间:2023-10-16
class name {
    char *s;
    int len;
public:
    name(){             // Default constr.
        s=NULL;
        len =0;
    }
    //**************************************************
     ~name(){           //  Destruct.
         if (s!=NULL){
             delete [] s;
             s=NULL;
         }
     }
     //*************************************************
    name(const char * s1);      // Constr.
    char* getName();    //fcn get name
    int getLen() ;       // fcn get lenght 
    void setName(const char * s1); // fcn set name  
};
void name::setName(const char * s1){
    if (s!=NULL){
        delete [] s;
            s=NULL;
    } 
        len = strlen(s1)+1;
        s=new char [len];  // back***
        strcpy(s,s1);
}
name::name(const char * s1){
    if (s!=NULL){
        delete [] s;
            s=NULL;
    } 
        len = strlen(s1)+1;
        s=new char [len];  // back***
        strcpy(s,s1);
}
char* name::getName(){
    return s ;
}
int name::getLen(){
    return strlen(s)+1 ;
}
int main()
{
    char C[20];
    cout << "Please enter a name: ";
    cin >> C;
    name AAA(C);
    name BBB;
    BBB.setName(C);
    cout << "nThe length of A(" << AAA.getName();
    cout << ") is: a" << AAA.getLen() << endl << endl;
    cout << "nThe length of B(" << BBB.getName();
    cout << ") is: a" << BBB.getLen() << endl << endl;
    system("pause");
    return 0;
}

当我运行代码时,类"BBB"成功执行,但"AAA"给了我运行时错误!

错误:

test0.exe: 0xC0000005: 访问冲突读取位置0xccccccc0 0x651157aa (msvcr100d.dll( 处未处理的异常。

在这里:

name::name(const char * s1){
    if (s!=NULL){

是坏事发生的地方。 s尚未初始化,您正在将其与NULL进行比较。为什么你觉得它最初是NULL的?这是未定义的行为。只需放弃条件 - 这是构建对象的地方,所以这样做 - 构建它。

强制性C++建议 - 使用std::string