Problem D: 计算机类

**

Problem D: 计算机类

Time Limit: 1 Sec Memory Limit: 128 MB
Submit: 580 Solved: 342
[Submit][Status]
Description

定义一个Computer类,有两个属性:

  1. 字符串属性name,用于表示计算机的名字。

  2. 静态整型属性cnt,用于记录产生的计算机对象的个数。

至少有如下成员函数:

  1. 构造函数和拷贝构造函数以及析构函数。

  2. setName(char*):用于修改当前对象的name属性为形参指定的串,并返回当前对象。

  3. print()方法,用于输出当前对象的name属性。

  4. getCnt()方法,用于返回cnt的值。
    Input

输入只有一行,是一个不含空白符的字符串。
Output

见样例。
Sample Input

Jack

Sample Output

1:0 computers.
2:2 computer.
Jack
Jack
3:2 computer.

HINT

不得使用string。

Append Code
``

    #include 
    #include
     
    using namespace std;
     
    class Computer
    {
    private:
        char *n;
        static int cnt;
    public:
        Computer(char* nn)
        {
            n=new char[strlen(nn)+1];
            strcpy(n,nn);
            cnt++;
        }
        ~Computer()
        {
            delete []n;
            cnt--;
        }
        Computer(const Computer& p)
        {
            n=new char[strlen(p.n)+1];
            strcpy(n,p.n);
            cnt++;
        }
        Computer& setName(char* nn)
        {
            n=new char[strlen(nn)+1];
            strcpy(n,nn);
            return *this;
        }
        void print()
        {
            cout<>str;
    com2.setName(str).print();
    com2.print();
    cout<<"3:"<

你可能感兴趣的:(c++,c++,oj)