码迷,mamicode.com
首页 > 其他好文 > 详细

this指针的应用

时间:2016-04-27 01:43:39      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:

#include<iostream>
#include<string>

using namespace std;


class student
{
private:
    char *name;
    int id;

public:
    student(char *Name="no name",int Id=0)
    {
        int len=strlen(Name);
        name=new char[len+1];
        name[len]=‘\0‘;
        memcpy(name,Name,len);
        id=Id;
    }

    void copy(const student& ss)
    {
        if(this==&ss)
        {
            cout<<"你不能复制自身"<<endl;
        }
        else
        {
            delete []name;
            int len=strlen(ss.name);
            name=new char[len+1];
            name[len]=‘\0‘;
            memcpy(name,ss.name,len);
            id=ss.id;
        }
    }

    void print()
    {
        cout<<"name: "<<name<<" id: "<<id<<endl;
    }

    ~student()
    {
        delete []name;
        name==NULL;
    }
};

int main()
{
    student st1("dingling",001);
    student st2("zhx",002);
    st1.print();
    st2.print();
    st2.copy(st1);
    st2.copy(st2);
    st1.print();
    st2.print();
    cin.get();
    return 0;
}

this指针的应用

标签:

原文地址:http://www.cnblogs.com/honeybusybee/p/5437303.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!